Files
conference-room-booking-system/frontend/node_modules/es-abstract/helpers/isPrimitive.js
T

6 lines
151 B
JavaScript
Raw Normal View History

2025-08-20 21:01:11 -04:00
'use strict';
module.exports = function isPrimitive(value) {
return value === null || (typeof value !== 'function' && typeof value !== 'object');
};