9 lines
199 B
XML
9 lines
199 B
XML
var isEmpty = function (obj) {
|
|
if (obj == null) return true;
|
|
if (typeof obj !== 'object') return false;
|
|
return JSON.stringify(obj) === '{}';
|
|
};
|
|
|
|
module.exports = {
|
|
isEmpty: isEmpty
|
|
}; |