1 2 3 4 5 6 7 8 9 10
// @internal export const isObjectEmpty = (o: any) => { if (!o) { return true; } if (Array.isArray(o)) { return o.length === 0; } return Object.keys(o).length === 0 && Object.getPrototypeOf(o) === Object.prototype; };