Files
lcbp3.np-dms.work/frontend/node_modules/es-abstract/helpers/isPrimitive.js
2025-09-21 20:29:15 +07:00

6 lines
151 B
JavaScript
Executable File

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