Files
ant-design/components/_util/isPrimitive.ts
thinkasany 5e7f63fb30 chore: fix biome error (#54682)
* chore: fix biome error

* fix

* fix again

* revert
2025-08-14 22:52:15 +08:00

5 lines
149 B
TypeScript

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