File size: 147 Bytes
1e92f2d | 1 2 3 4 | const isPrimitive = (value: unknown) => (typeof value !== 'object' && typeof value !== 'function') || value === null;
export default isPrimitive;
|
1e92f2d | 1 2 3 4 | const isPrimitive = (value: unknown) => (typeof value !== 'object' && typeof value !== 'function') || value === null;
export default isPrimitive;
|