Files
planet/frontend/node_modules/antd/es/_util/isPrimitive.js
2026-03-05 11:46:58 +08:00

2 lines
132 B
JavaScript

const isPrimitive = value => typeof value !== 'object' && typeof value !== 'function' || value === null;
export default isPrimitive;