export function isIterator(it: any): it is Iterator | AsyncIterator { return typeof it?.next === 'function'; }