UNPKG

@technobuddha/library

Version:
9 lines (8 loc) 279 B
/** * Check to see if an object is a primitive * * @param input object to test * @returns true, if the object is a c */ export declare function isPrimitive(input: unknown): input is null | undefined | string | number | bigint | boolean | symbol; export default isPrimitive;