auth-api/tests/node_modules/es-to-primitive/helpers/isPrimitive.js

6 lines
151 B
JavaScript
Raw Normal View History

2021-06-23 22:30:45 +02:00
'use strict';
module.exports = function isPrimitive(value) {
return value === null || (typeof value !== 'function' && typeof value !== 'object');
};