projecte_ionic/node_modules/es-abstract/helpers/isPrimitive.js
2022-02-09 18:30:03 +01:00

5 lines
151 B
JavaScript
Executable file

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