Blame view

code/finance_web/node_modules/es-abstract/helpers/isPrimitive.js 136 Bytes
a  
谢明辉 committed
1 2 3
module.exports = function isPrimitive(value) {
	return value === null || (typeof value !== 'function' && typeof value !== 'object');
};