Ejemplo n.º 1
0
func (val_ *Value) IsStringObject() bool {
	return val_.hasJsType(isStringObject, func(self unsafe.Pointer) bool {
		return C.V8_Value_IsStringObject(self) == 1
	})
}
Ejemplo n.º 2
0
func (v *Value) IsStringObject() bool {
	return v.checkJsType(isStringObject, func(self unsafe.Pointer) bool {
		return C.V8_Value_IsStringObject(self) == 1
	})
}