mirror of
https://github.com/Unleash/unleash.git
synced 2025-01-11 00:08:30 +01:00
4 lines
102 B
TypeScript
4 lines
102 B
TypeScript
|
export const isEmpty = (object: Object): boolean => {
|
||
|
return Object.keys(object).length === 0;
|
||
|
};
|