export function isGenerator( value: unknown, ): value is Generator { return value != null && typeof value === 'object' && Symbol.iterator in value; }