Blame view

node_modules/es-to-primitive/helpers/isPrimitive.js 136 Bytes
aaac7fed   liuqimichale   add
1
2
3
  module.exports = function isPrimitive(value) {
  	return value === null || (typeof value !== 'function' && typeof value !== 'object');
  };