astro-ghostcms/.pnpm-store/v3/files/eb/f30f09ee14069e29d34216aedcd...

13 lines
239 B
Plaintext
Raw Permalink Normal View History

2024-02-14 14:10:47 +00:00
const isObjectEmpty = (o) => {
if (!o) {
return true;
}
if (Array.isArray(o)) {
return o.length === 0;
}
return Object.keys(o).length === 0 && Object.getPrototypeOf(o) === Object.prototype;
};
export {
isObjectEmpty
};