Urara-Blog/node_modules/.pnpm-store/v3/files/50/79b7dcad248c25bc6ddbe281d80d77b302bb35c9e514d378685fffec20973cca188012b09b96aa4805abcc33e3884c70751573fb33c797c401538c5804be36
2022-08-14 01:14:53 +08:00

5 lines
151 B
Text

'use strict';
module.exports = function isPrimitive(value) {
return value === null || (typeof value !== 'function' && typeof value !== 'object');
};