exportdefaultfunction_asyncIterator(iterable){varmethod;if(typeofSymbol!=="undefined"){if(Symbol.asyncIterator){method=iterable[Symbol.asyncIterator];if(method!=null)returnmethod.call(iterable);}if(Symbol.iterator){method=iterable[Symbol.iterator];if(method!=null)returnmethod.call(iterable);}}thrownewTypeError("Object is not async iterable");}