UNPKG

@unclepaul/allcountjs

Version:

The open source framework for rapid business application development with Node.js

9 lines (8 loc) 200 B
export default function isObjectEmpty(obj) { var k; for (k in obj) { // even if its not own property I'd still call it non-empty return false; } return true; }