JFIF x x C C " } !1AQa "q2#BR$3br %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz w !1AQ aq"2B #3Rbr{
File "is-object-empty.js"
Full Path: /var/www/html/ctctaxi/public/assets/vendor_components/moment/src/lib/utils/is-object-empty.js
File size: 192 bytes
MIME-type: text/plain
Charset: utf-8
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;
}