Appearance
检查 value 是否是原始类型(string, number, boolean, symbol, undefined, null, bigint)。
value
import { isPrimitive } from '@base-web-kits/base-tools-ts'; isPrimitive(1); // 结果: true isPrimitive({}); // 结果: false
value (any)
(boolean)
true
false