Files
2025-11-28 19:45:44 -07:00

10 lines
245 B
JavaScript

'use strict';
Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
function isPrimitive(value) {
return value == null || (typeof value !== 'object' && typeof value !== 'function');
}
exports.isPrimitive = isPrimitive;