isPrimitive.js 153 B

123456
  1. exports = function(val) {
  2. var type = typeof val;
  3. return val == null || (type !== 'function' && type !== 'object');
  4. };
  5. module.exports = exports;