FLUJOS/BACK_BACK/node_modules/es-to-primitive/helpers/isPrimitive.js
2025-11-07 00:06:12 +01:00

5 lines
151 B
JavaScript
Executable file

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