Files
adminpage/node_modules/antd/es/_util/isPrimitive.js

2 lines
132 B
JavaScript
Raw Normal View History

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