export function* enumObject(obj: Record | null | void): Generator<[string, T]> { if (obj && typeof obj === 'object') { for (const key in obj) { yield [key, obj[key]]; } } }