UNPKG

react-new-hoc

Version:

Work with React and HOCs (Higher-Order Components)

10 lines (9 loc) 181 B
export function isEmpty(obj: object | Array<any>): boolean { if (Array.isArray(obj)) { return !obj.length; } for (const _ in obj) { return false; } return true; }