DIR: /proc/self/root/usr/share/nodejs/es-to-primitive/helpers/ |
Current File : //proc/self/root/usr/share/nodejs/es-to-primitive/helpers/isPrimitive.js |
'use strict'; module.exports = function isPrimitive(value) { return value === null || (typeof value !== 'function' && typeof value !== 'object'); }; |