Files
setup-haskell/node_modules/es-abstract/helpers/isPrimitive.js
Timothy Clem 63b90beb0c npm audit fix
2019-09-30 10:04:01 -07:00

6 lines
151 B
JavaScript

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