jrshikoku/lib/objectIsEmpty.js
2023-01-28 03:27:41 +09:00

4 lines
78 B
JavaScript

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