minishouyin/node_modules/antd/lib/_util/isPrimitive.js

8 lines
256 B
JavaScript
Raw Normal View History

2025-11-12 11:35:57 +08:00
"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;