UNPKG

yongjiu_vue_editor_common

Version:
13 lines (11 loc) 259 B
/** * Created by Liu.Jun on 2020/11/22 9:48 下午. */ export function isEmptyObject(obj) { for (const key in obj) { if (Object.prototype.hasOwnProperty.call(obj, key)) { return false; } } return true; }