Files
Webklar.com/node_modules/es-abstract/helpers/isPrimitive.js
Basilosaurusrex f027651f9b main repo
2025-11-24 18:09:40 +01:00

6 lines
151 B
JavaScript

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