github-pages-deploy-action/node_modules/es-to-primitive/helpers/isPrimitive.js

6 lines
151 B
JavaScript
Raw Normal View History

2020-03-07 11:45:40 +08:00
'use strict';
2020-01-28 13:08:03 +08:00
module.exports = function isPrimitive(value) {
return value === null || (typeof value !== 'function' && typeof value !== 'object');
};