install-nix-action/node_modules/es-abstract/helpers/isPrimitive.js
Domen Kožar 70742d22d9
v6
2019-11-19 17:50:30 +01:00

5 lines
151 B
JavaScript

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