uni-ticket-system/node_modules/licia/isPrimitive.js

7 lines
153 B
JavaScript
Raw Normal View History

2023-12-05 02:11:10 +00:00
exports = function(val) {
var type = typeof val;
return val == null || (type !== 'function' && type !== 'object');
};
module.exports = exports;