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

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

initial commit

  • Property mode set to 100644
File size: 580 bytes
Line 
1function _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}
14
15module.exports = _asyncIterator;
16module.exports["default"] = module.exports, module.exports.__esModule = true;
Note: See TracBrowser for help on using the repository browser.