%PDF- %PDF-
| Direktori : /home/vacivi36/.trash/vacivitta/node_modules/es-to-primitive/helpers/ |
| Current File : /home/vacivi36/.trash/vacivitta/node_modules/es-to-primitive/helpers/isPrimitive.js |
'use strict';
/** @type {(value: unknown) => value is null | undefined | string | symbol | number | boolean | bigint} */
module.exports = function isPrimitive(value) {
return value === null || (typeof value !== 'function' && typeof value !== 'object');
};