Blame view

node_modules/es-abstract/helpers/isPrimitive.js 136 Bytes
ce4c83ff   wxy   初始提交
1
2
3
  module.exports = function isPrimitive(value) {
  	return value === null || (typeof value !== 'function' && typeof value !== 'object');
  };