isPrimitive.js 132 B

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