vue-ant-patterns
Version:
vue-ant-patterns
21 lines (20 loc) • 416 B
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
/*
* @Author: w.pengfei
* @Date: 2021-04-04 14:23:35
* @LastEditTime: 2021-04-04 14:26:53
* @Description: ''
* @LastEditors: w.pengfei
*/
var isEmptyObj = function isEmptyObj(o) {
var s = void 0;
// eslint-disable-next-line guard-for-in
for (s in o) {
return false;
}
return true;
};
exports["default"] = isEmptyObj;