Files

2 lines
132 B
JavaScript
Raw Permalink Normal View History

const isPrimitive = value => typeof value !== 'object' && typeof value !== 'function' || value === null;
export default isPrimitive;