typeOf
比原生 typeof 更强大的方法,可以正确判断引用数据类型。
mdx
// 使用示例
import { typeOf } from 'sth';
typeOf(2); // number
typeOf(true); // boolean
// 原生 typeof 无法正确判断引用数据类型的类型
typeof []; // object
typeof null; // object
typeof /a/; // object
// typeOf 可以正确判断引用数据类型的类型
typeOf([]); // array
typeOf(null); // null
typeOf(/a/); // regexp