github-pages-deploy-action/node_modules/es-to-primitive/helpers/isPrimitive.js
2020-01-27 23:58:23 -05:00

4 lines
136 B
JavaScript

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