@yookue/ts-lang-utils
Version:
Common lang utilities for typescript
4 lines • 331 B
JavaScript
import _typeof from "@babel/runtime/helpers/esm/typeof";
export function isPrimitive(object) {
return object === undefined || object === null || typeof object === 'string' || typeof object === 'boolean' || typeof object === 'number' || _typeof(object) === 'symbol' || typeof object === 'bigint' || typeof object === 'function';
}