summaryrefslogtreecommitdiff
path: root/alarm/node_modules/@babel/runtime/helpers/asyncToGenerator.js
diff options
context:
space:
mode:
Diffstat (limited to 'alarm/node_modules/@babel/runtime/helpers/asyncToGenerator.js')
-rw-r--r--alarm/node_modules/@babel/runtime/helpers/asyncToGenerator.js31
1 files changed, 31 insertions, 0 deletions
diff --git a/alarm/node_modules/@babel/runtime/helpers/asyncToGenerator.js b/alarm/node_modules/@babel/runtime/helpers/asyncToGenerator.js
new file mode 100644
index 0000000..6b9697a
--- /dev/null
+++ b/alarm/node_modules/@babel/runtime/helpers/asyncToGenerator.js
@@ -0,0 +1,31 @@
+function asyncGeneratorStep(gen, resolve, reject, _next, _throw, key, arg) {
+ try {
+ var info = gen[key](arg);
+ var value = info.value;
+ } catch (error) {
+ reject(error);
+ return;
+ }
+ if (info.done) {
+ resolve(value);
+ } else {
+ Promise.resolve(value).then(_next, _throw);
+ }
+}
+function _asyncToGenerator(fn) {
+ return function () {
+ var self = this,
+ args = arguments;
+ return new Promise(function (resolve, reject) {
+ var gen = fn.apply(self, args);
+ function _next(value) {
+ asyncGeneratorStep(gen, resolve, reject, _next, _throw, "next", value);
+ }
+ function _throw(err) {
+ asyncGeneratorStep(gen, resolve, reject, _next, _throw, "throw", err);
+ }
+ _next(undefined);
+ });
+ };
+}
+module.exports = _asyncToGenerator, module.exports.__esModule = true, module.exports["default"] = module.exports; \ No newline at end of file