typeofEquals<T> 函数

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

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

实现

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