Files
khalij-pay/node_modules/es-abstract/helpers/isPrimitive.js
2025-10-23 21:52:07 +03:30

6 lines
151 B
JavaScript

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