/home/techb158/balavpn.abdallabala.com/node_modules/es-to-primitive/helpers
Edit: /home/techb158/balavpn.abdallabala.com/node_modules/es-to-primitive/helpers/isPrimitive.js (320B)
'use strict';
/** @import { primitive } from '../' */
/** @import { primitiveES5 } from '../es5' */
/** @type {
(value: unknown) => value is T} */
module.exports = function isPrimitive(value) {
return value === null || (typeof value !== 'function' && typeof value !== 'object');
};