Files
jrshikoku/lib/objectIsEmpty.ts

4 lines
85 B
TypeScript

export const objectIsEmpty = (obj:object) => {
return !Object.keys(obj).length;
};