UNPKG

has-empty

Version:

has-empty-value is a package used to check the value is empty.

7 lines (4 loc) 249 B
type PrimitiveTypes = string | number | boolean | null | undefined; type IValue = PrimitiveTypes | Array<PrimitiveTypes> | object; declare const hasEmpty: (value: Partial<IValue>) => boolean; export { type IValue, type PrimitiveTypes, hasEmpty };