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