Current section

Files

Jump to
udia assets node_modules es-abstract helpers isPrimitive.js
Raw

assets/node_modules/es-abstract/helpers/isPrimitive.js

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