Blame view

node_modules/es-abstract/helpers/isPrimitive.js 136 Bytes
2a09d1a4   liuqimichale   添加宜春 天水 宣化
1
2
3
  module.exports = function isPrimitive(value) {
  	return value === null || (typeof value !== 'function' && typeof value !== 'object');
  };