UNPKG

trainingproject

Version:

A module to teach you how to module.

9 lines (8 loc) 192 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; }