export default function isEmpty(obj: Object): boolean {
for (const _i in obj) {
return false;
}
return true;