8 lines
256 B
JavaScript
8 lines
256 B
JavaScript
|
|
"use strict";
|
||
|
|
|
||
|
|
Object.defineProperty(exports, "__esModule", {
|
||
|
|
value: true
|
||
|
|
});
|
||
|
|
exports.default = void 0;
|
||
|
|
const isPrimitive = value => typeof value !== 'object' && typeof value !== 'function' || value === null;
|
||
|
|
var _default = exports.default = isPrimitive;
|