source: trip-planner-front/node_modules/@babel/runtime/helpers/esm/asyncIterator.js@ b738035

Last change on this file since b738035 was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago

initial commit

  • Property mode set to 100644
File size: 483 bytes
Line 
1export default function _asyncIterator(iterable) {
2 var method;
3
4 if (typeof Symbol !== "undefined") {
5 if (Symbol.asyncIterator) method = iterable[Symbol.asyncIterator];
6 if (method == null && Symbol.iterator) method = iterable[Symbol.iterator];
7 }
8
9 if (method == null) method = iterable["@@asyncIterator"];
10 if (method == null) method = iterable["@@iterator"];
11 if (method == null) throw new TypeError("Object is not async iterable");
12 return method.call(iterable);
13}
Note: See TracBrowser for help on using the repository browser.