UNPKG

pure-conditions

Version:
6 lines (5 loc) 170 B
function isEmptyObject (object) { if (!object) return false return Object.keys(object).length === 0 && object.constructor === Object } module.exports = isEmptyObject