mirror of
https://github.com/Unleash/unleash.git
synced 2025-07-17 13:46:47 +02:00
4 lines
102 B
TypeScript
4 lines
102 B
TypeScript
export const isEmpty = (object: Object): boolean => {
|
|
return Object.keys(object).length === 0;
|
|
};
|