ts_aimz/utils/comm.wxs

9 lines
199 B
Plaintext
Raw Normal View History

2025-03-29 15:54:33 +08:00
var isEmpty = function (obj) {
if (obj == null) return true;
if (typeof obj !== 'object') return false;
return JSON.stringify(obj) === '{}';
};
module.exports = {
isEmpty: isEmpty
};