typeofEquals<T> 函数

bool typeofEquals<T>(
  1. Object? o,
  2. String type
)

在给定的对象上执行 JavaScript typeof 操作符,并确定结果是否等于给定的类型。公开整个 typeof 等式,以最大化浏览器优化。

实现

external bool typeofEquals<T>(Object? o, String type);