UNPKG

275 BJavaScriptView Raw
1/**
2 * Returns whether the given object is empty ({}).
3 * @see https://stackoverflow.com/a/32108184.
4 *
5 * @param {Object} obj - the object under test.
6 */
7export default function isObjectEmpty(obj) {
8 return Object.keys(obj).length === 0 && obj.constructor === Object;
9}