blob: 06f0bf042525a13635fcd0980e07d4737a09c0c8 [file] [log] [blame]
Leo Repp58b9f112021-11-22 11:57:47 +01001'use strict';
2
3module.exports = function isPrimitive(value) {
4 return value === null || (typeof value !== 'function' && typeof value !== 'object');
5};