JSAnyUtilityExtension 扩展
适用于任何 JavaScript 值的常用实用函数。
- 在
方法
-
dartify(
) → Object? - 将一个 JavaScript 值转换为 Dart 等价对象(如果可能的话)。
-
instanceof(
JSFunction constructor) → bool - 此
JSAny?
是否为constructor
的实例。 -
instanceOfString(
String constructorName) → bool - 此
JSAny?
是否为通过constructorName
定义的构造函数的实例,其中constructorName
在 globalContext 中进行查找。 -
isA<
T extends JSAny?> () → bool - 此
JSAny?
是否是T
声明的 JavaScript 类型的实例。 -
typeofEquals(
String typeString) → bool typeof
对此JSAny?
的返回值是否为typeString
。