updated npm modules
This commit is contained in:
23
node_modules/regenerator-runtime/package.json
generated
vendored
23
node_modules/regenerator-runtime/package.json
generated
vendored
@@ -1,26 +1,26 @@
|
||||
{
|
||||
"_from": "regenerator-runtime@^0.12.0",
|
||||
"_id": "regenerator-runtime@0.12.1",
|
||||
"_from": "regenerator-runtime@^0.13.2",
|
||||
"_id": "regenerator-runtime@0.13.2",
|
||||
"_inBundle": false,
|
||||
"_integrity": "sha512-odxIc1/vDlo4iZcfXqRYFj0vpXFNoGdKMAUieAlFYO6m/nl5e9KR/beGf41z4a1FI+aQgtjhuaSlDxQ0hmkrHg==",
|
||||
"_integrity": "sha512-S/TQAZJO+D3m9xeN1WTI8dLKBBiRgXBlTJvbWjCThHWZj9EvHK70Ff50/tYj2J/fvBY6JtFVwRuazHN2E7M9BA==",
|
||||
"_location": "/regenerator-runtime",
|
||||
"_phantomChildren": {},
|
||||
"_requested": {
|
||||
"type": "range",
|
||||
"registry": true,
|
||||
"raw": "regenerator-runtime@^0.12.0",
|
||||
"raw": "regenerator-runtime@^0.13.2",
|
||||
"name": "regenerator-runtime",
|
||||
"escapedName": "regenerator-runtime",
|
||||
"rawSpec": "^0.12.0",
|
||||
"rawSpec": "^0.13.2",
|
||||
"saveSpec": null,
|
||||
"fetchSpec": "^0.12.0"
|
||||
"fetchSpec": "^0.13.2"
|
||||
},
|
||||
"_requiredBy": [
|
||||
"/@babel/runtime"
|
||||
],
|
||||
"_resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.12.1.tgz",
|
||||
"_shasum": "fa1a71544764c036f8c49b13a08b2594c9f8a0de",
|
||||
"_spec": "regenerator-runtime@^0.12.0",
|
||||
"_resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.2.tgz",
|
||||
"_shasum": "32e59c9a6fb9b1a4aff09b4930ca2d4477343447",
|
||||
"_spec": "regenerator-runtime@^0.13.2",
|
||||
"_where": "C:\\xampp\\htdocs\\w4rpservices\\node_modules\\@babel\\runtime",
|
||||
"author": {
|
||||
"name": "Ben Newman",
|
||||
@@ -36,11 +36,12 @@
|
||||
"async"
|
||||
],
|
||||
"license": "MIT",
|
||||
"main": "runtime-module.js",
|
||||
"main": "runtime.js",
|
||||
"name": "regenerator-runtime",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/facebook/regenerator/tree/master/packages/regenerator-runtime"
|
||||
},
|
||||
"version": "0.12.1"
|
||||
"sideEffects": true,
|
||||
"version": "0.13.2"
|
||||
}
|
||||
|
||||
37
node_modules/regenerator-runtime/runtime-module.js
generated
vendored
37
node_modules/regenerator-runtime/runtime-module.js
generated
vendored
@@ -1,37 +0,0 @@
|
||||
/**
|
||||
* Copyright (c) 2014-present, Facebook, Inc.
|
||||
*
|
||||
* This source code is licensed under the MIT license found in the
|
||||
* LICENSE file in the root directory of this source tree.
|
||||
*/
|
||||
|
||||
// This method of obtaining a reference to the global object needs to be
|
||||
// kept identical to the way it is obtained in runtime.js
|
||||
var g = (function() {
|
||||
return this || (typeof self === "object" && self);
|
||||
})() || Function("return this")();
|
||||
|
||||
// Use `getOwnPropertyNames` because not all browsers support calling
|
||||
// `hasOwnProperty` on the global `self` object in a worker. See #183.
|
||||
var hadRuntime = g.regeneratorRuntime &&
|
||||
Object.getOwnPropertyNames(g).indexOf("regeneratorRuntime") >= 0;
|
||||
|
||||
// Save the old regeneratorRuntime in case it needs to be restored later.
|
||||
var oldRuntime = hadRuntime && g.regeneratorRuntime;
|
||||
|
||||
// Force reevalutation of runtime.js.
|
||||
g.regeneratorRuntime = undefined;
|
||||
|
||||
module.exports = require("./runtime");
|
||||
|
||||
if (hadRuntime) {
|
||||
// Restore the original runtime.
|
||||
g.regeneratorRuntime = oldRuntime;
|
||||
} else {
|
||||
// Remove the global property added by runtime.js.
|
||||
try {
|
||||
delete g.regeneratorRuntime;
|
||||
} catch(e) {
|
||||
g.regeneratorRuntime = undefined;
|
||||
}
|
||||
}
|
||||
77
node_modules/regenerator-runtime/runtime.js
generated
vendored
77
node_modules/regenerator-runtime/runtime.js
generated
vendored
@@ -5,7 +5,7 @@
|
||||
* LICENSE file in the root directory of this source tree.
|
||||
*/
|
||||
|
||||
!(function(global) {
|
||||
var runtime = (function (exports) {
|
||||
"use strict";
|
||||
|
||||
var Op = Object.prototype;
|
||||
@@ -16,23 +16,6 @@
|
||||
var asyncIteratorSymbol = $Symbol.asyncIterator || "@@asyncIterator";
|
||||
var toStringTagSymbol = $Symbol.toStringTag || "@@toStringTag";
|
||||
|
||||
var inModule = typeof module === "object";
|
||||
var runtime = global.regeneratorRuntime;
|
||||
if (runtime) {
|
||||
if (inModule) {
|
||||
// If regeneratorRuntime is defined globally and we're in a module,
|
||||
// make the exports object identical to regeneratorRuntime.
|
||||
module.exports = runtime;
|
||||
}
|
||||
// Don't bother evaluating the rest of this file if the runtime was
|
||||
// already defined globally.
|
||||
return;
|
||||
}
|
||||
|
||||
// Define the runtime globally (as expected by generated code) as either
|
||||
// module.exports (if we're in a module) or a new, empty object.
|
||||
runtime = global.regeneratorRuntime = inModule ? module.exports : {};
|
||||
|
||||
function wrap(innerFn, outerFn, self, tryLocsList) {
|
||||
// If outerFn provided and outerFn.prototype is a Generator, then outerFn.prototype instanceof Generator.
|
||||
var protoGenerator = outerFn && outerFn.prototype instanceof Generator ? outerFn : Generator;
|
||||
@@ -45,7 +28,7 @@
|
||||
|
||||
return generator;
|
||||
}
|
||||
runtime.wrap = wrap;
|
||||
exports.wrap = wrap;
|
||||
|
||||
// Try/catch helper to minimize deoptimizations. Returns a completion
|
||||
// record like context.tryEntries[i].completion. This interface could
|
||||
@@ -116,7 +99,7 @@
|
||||
});
|
||||
}
|
||||
|
||||
runtime.isGeneratorFunction = function(genFun) {
|
||||
exports.isGeneratorFunction = function(genFun) {
|
||||
var ctor = typeof genFun === "function" && genFun.constructor;
|
||||
return ctor
|
||||
? ctor === GeneratorFunction ||
|
||||
@@ -126,7 +109,7 @@
|
||||
: false;
|
||||
};
|
||||
|
||||
runtime.mark = function(genFun) {
|
||||
exports.mark = function(genFun) {
|
||||
if (Object.setPrototypeOf) {
|
||||
Object.setPrototypeOf(genFun, GeneratorFunctionPrototype);
|
||||
} else {
|
||||
@@ -143,7 +126,7 @@
|
||||
// `yield regeneratorRuntime.awrap(x)`, so that the runtime can test
|
||||
// `hasOwn.call(value, "__await")` to determine if the yielded value is
|
||||
// meant to be awaited.
|
||||
runtime.awrap = function(arg) {
|
||||
exports.awrap = function(arg) {
|
||||
return { __await: arg };
|
||||
};
|
||||
|
||||
@@ -218,17 +201,17 @@
|
||||
AsyncIterator.prototype[asyncIteratorSymbol] = function () {
|
||||
return this;
|
||||
};
|
||||
runtime.AsyncIterator = AsyncIterator;
|
||||
exports.AsyncIterator = AsyncIterator;
|
||||
|
||||
// Note that simple async functions are implemented on top of
|
||||
// AsyncIterator objects; they just return a Promise for the value of
|
||||
// the final result produced by the iterator.
|
||||
runtime.async = function(innerFn, outerFn, self, tryLocsList) {
|
||||
exports.async = function(innerFn, outerFn, self, tryLocsList) {
|
||||
var iter = new AsyncIterator(
|
||||
wrap(innerFn, outerFn, self, tryLocsList)
|
||||
);
|
||||
|
||||
return runtime.isGeneratorFunction(outerFn)
|
||||
return exports.isGeneratorFunction(outerFn)
|
||||
? iter // If outerFn is a generator, return the full iterator.
|
||||
: iter.next().then(function(result) {
|
||||
return result.done ? result.value : iter.next();
|
||||
@@ -325,7 +308,8 @@
|
||||
context.delegate = null;
|
||||
|
||||
if (context.method === "throw") {
|
||||
if (delegate.iterator.return) {
|
||||
// Note: ["return"] must be used for ES3 parsing compatibility.
|
||||
if (delegate.iterator["return"]) {
|
||||
// If the delegate iterator has a return method, give it a
|
||||
// chance to clean up.
|
||||
context.method = "return";
|
||||
@@ -445,7 +429,7 @@
|
||||
this.reset(true);
|
||||
}
|
||||
|
||||
runtime.keys = function(object) {
|
||||
exports.keys = function(object) {
|
||||
var keys = [];
|
||||
for (var key in object) {
|
||||
keys.push(key);
|
||||
@@ -506,7 +490,7 @@
|
||||
// Return an iterator with no values.
|
||||
return { next: doneResult };
|
||||
}
|
||||
runtime.values = values;
|
||||
exports.values = values;
|
||||
|
||||
function doneResult() {
|
||||
return { value: undefined, done: true };
|
||||
@@ -711,11 +695,32 @@
|
||||
return ContinueSentinel;
|
||||
}
|
||||
};
|
||||
})(
|
||||
// In sloppy mode, unbound `this` refers to the global object, fallback to
|
||||
// Function constructor if we're in global strict mode. That is sadly a form
|
||||
// of indirect eval which violates Content Security Policy.
|
||||
(function() {
|
||||
return this || (typeof self === "object" && self);
|
||||
})() || Function("return this")()
|
||||
);
|
||||
|
||||
// Regardless of whether this script is executing as a CommonJS module
|
||||
// or not, return the runtime object so that we can declare the variable
|
||||
// regeneratorRuntime in the outer scope, which allows this module to be
|
||||
// injected easily by `bin/regenerator --include-runtime script.js`.
|
||||
return exports;
|
||||
|
||||
}(
|
||||
// If this script is executing as a CommonJS module, use module.exports
|
||||
// as the regeneratorRuntime namespace. Otherwise create a new empty
|
||||
// object. Either way, the resulting object will be used to initialize
|
||||
// the regeneratorRuntime variable at the top of this file.
|
||||
typeof module === "object" ? module.exports : {}
|
||||
));
|
||||
|
||||
try {
|
||||
regeneratorRuntime = runtime;
|
||||
} catch (accidentalStrictMode) {
|
||||
// This module should not be running in strict mode, so the above
|
||||
// assignment should always work unless something is misconfigured. Just
|
||||
// in case runtime.js accidentally runs in strict mode, we can escape
|
||||
// strict mode using a global Function call. This could conceivably fail
|
||||
// if a Content Security Policy forbids using Function, but in that case
|
||||
// the proper solution is to fix the accidental strict mode problem. If
|
||||
// you've misconfigured your bundler to force strict mode and applied a
|
||||
// CSP to forbid Function, and you're not willing to fix either of those
|
||||
// problems, please detail your unique predicament in a GitHub issue.
|
||||
Function("r", "regeneratorRuntime = r")(runtime);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user