()
| 53155 | },{"../helpers/regeneratorRuntime":"18se5"}],"18se5":[function(require,module,exports) { |
| 53156 | var _typeof = require("./typeof.js")["default"]; |
| 53157 | function _regeneratorRuntime() { |
| 53158 | "use strict"; |
| 53159 | /*! regenerator-runtime -- Copyright (c) 2014-present, Facebook, Inc. -- license (MIT): https://github.com/facebook/regenerator/blob/main/LICENSE */ module.exports = _regeneratorRuntime = function _regeneratorRuntime() { |
| 53160 | return exports; |
| 53161 | }, module.exports.__esModule = true, module.exports["default"] = module.exports; |
| 53162 | var exports = {}, Op = Object.prototype, hasOwn = Op.hasOwnProperty, $Symbol = "function" == typeof Symbol ? Symbol : {}, iteratorSymbol = $Symbol.iterator || "@@iterator", asyncIteratorSymbol = $Symbol.asyncIterator || "@@asyncIterator", toStringTagSymbol = $Symbol.toStringTag || "@@toStringTag"; |
| 53163 | function define(obj, key, value) { |
| 53164 | return Object.defineProperty(obj, key, { |
| 53165 | value: value, |
| 53166 | enumerable: !0, |
| 53167 | configurable: !0, |
| 53168 | writable: !0 |
| 53169 | }), obj[key]; |
| 53170 | } |
| 53171 | try { |
| 53172 | define({}, ""); |
| 53173 | } catch (err1) { |
| 53174 | define = function define(obj, key, value) { |
| 53175 | return obj[key] = value; |
| 53176 | }; |
| 53177 | } |
| 53178 | function wrap(innerFn1, outerFn, self1, tryLocsList) { |
| 53179 | var protoGenerator = outerFn && outerFn.prototype instanceof Generator ? outerFn : Generator, generator = Object.create(protoGenerator.prototype), context1 = new Context(tryLocsList || []); |
| 53180 | return generator._invoke = function(innerFn, self, context) { |
| 53181 | var state = "suspendedStart"; |
| 53182 | return function(method, arg) { |
| 53183 | if ("executing" === state) throw new Error("Generator is already running"); |
| 53184 | if ("completed" === state) { |
| 53185 | if ("throw" === method) throw arg; |
| 53186 | return doneResult(); |
| 53187 | } |
| 53188 | for(context.method = method, context.arg = arg;;){ |
| 53189 | var delegate = context.delegate; |
| 53190 | if (delegate) { |
| 53191 | var delegateResult = maybeInvokeDelegate(delegate, context); |
| 53192 | if (delegateResult) { |
| 53193 | if (delegateResult === ContinueSentinel) continue; |
| 53194 | return delegateResult; |
| 53195 | } |
| 53196 | } |
| 53197 | if ("next" === context.method) context.sent = context._sent = context.arg; |
| 53198 | else if ("throw" === context.method) { |
| 53199 | if ("suspendedStart" === state) throw state = "completed", context.arg; |
| 53200 | context.dispatchException(context.arg); |
| 53201 | } else "return" === context.method && context.abrupt("return", context.arg); |
| 53202 | state = "executing"; |
| 53203 | var record = tryCatch(innerFn, self, context); |
| 53204 | if ("normal" === record.type) { |
| 53205 | if (state = context.done ? "completed" : "suspendedYield", record.arg === ContinueSentinel) continue; |
| 53206 | return { |
| 53207 | value: record.arg, |
| 53208 | done: context.done |
| 53209 | }; |
| 53210 | } |
| 53211 | "throw" === record.type && (state = "completed", context.method = "throw", context.arg = record.arg); |
| 53212 | } |
| 53213 | }; |
| 53214 | }(innerFn1, self1, context1), generator; |
nothing calls this directly
no test coverage detected