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