Merge branch 'main' of https://github.com/akv-platform/setup-go into apply-reusable-workflows
This commit is contained in:
commit
5b3907ef5c
@ -93,6 +93,41 @@ describe('getCacheDirectoryPath', () => {
|
||||
.then(data => expect(data).toEqual(expectedResult));
|
||||
});
|
||||
|
||||
it('should return path to the cache folder if one command return empty str', async () => {
|
||||
//Arrange
|
||||
getExecOutputSpy.mockImplementationOnce((commandLine: string) => {
|
||||
return new Promise<exec.ExecOutput>(resolve => {
|
||||
resolve({exitCode: 0, stdout: 'path/to/cache/folder', stderr: ''});
|
||||
});
|
||||
});
|
||||
|
||||
getExecOutputSpy.mockImplementationOnce((commandLine: string) => {
|
||||
return new Promise<exec.ExecOutput>(resolve => {
|
||||
resolve({exitCode: 0, stdout: '', stderr: ''});
|
||||
});
|
||||
});
|
||||
|
||||
const expectedResult = ['path/to/cache/folder'];
|
||||
|
||||
//Act + Assert
|
||||
return cacheUtils
|
||||
.getCacheDirectoryPath(validPackageManager)
|
||||
.then(data => expect(data).toEqual(expectedResult));
|
||||
});
|
||||
|
||||
it('should throw if the both commands return empty str', async () => {
|
||||
getExecOutputSpy.mockImplementation((commandLine: string) => {
|
||||
return new Promise<exec.ExecOutput>(resolve => {
|
||||
resolve({exitCode: 10, stdout: '', stderr: ''});
|
||||
});
|
||||
});
|
||||
|
||||
//Act + Assert
|
||||
expect(async () => {
|
||||
await cacheUtils.getCacheDirectoryPath(validPackageManager);
|
||||
}).rejects.toThrow();
|
||||
});
|
||||
|
||||
it('should throw if the specified package name is invalid', async () => {
|
||||
getExecOutputSpy.mockImplementation((commandLine: string) => {
|
||||
return new Promise<exec.ExecOutput>(resolve => {
|
||||
@ -162,7 +197,7 @@ describe('isCacheFeatureAvailable', () => {
|
||||
expect(functionResult).toBeFalsy();
|
||||
});
|
||||
|
||||
it('should throw when cache feature is unavailable and GHES is used', () => {
|
||||
it('should warn when cache feature is unavailable and GHES is used', () => {
|
||||
//Arrange
|
||||
isFeatureAvailableSpy.mockImplementation(() => {
|
||||
return false;
|
||||
@ -170,10 +205,11 @@ describe('isCacheFeatureAvailable', () => {
|
||||
|
||||
process.env['GITHUB_SERVER_URL'] = 'https://nongithub.com';
|
||||
|
||||
let errorMessage =
|
||||
let warningMessage =
|
||||
'Cache action is only supported on GHES version >= 3.5. If you are on version >=3.5 Please check with GHES admin if Actions cache service is enabled or not.';
|
||||
|
||||
//Act + Assert
|
||||
expect(() => cacheUtils.isCacheFeatureAvailable()).toThrow(errorMessage);
|
||||
expect(cacheUtils.isCacheFeatureAvailable()).toBeFalsy();
|
||||
expect(warningSpy).toHaveBeenCalledWith(warningMessage);
|
||||
});
|
||||
});
|
||||
|
||||
5065
dist/cache-save/index.js
vendored
5065
dist/cache-save/index.js
vendored
@ -6265,312 +6265,312 @@ exports.AbortSignal = AbortSignal;
|
||||
/***/ 9268:
|
||||
/***/ ((module) => {
|
||||
|
||||
/*! *****************************************************************************
|
||||
Copyright (c) Microsoft Corporation.
|
||||
|
||||
Permission to use, copy, modify, and/or distribute this software for any
|
||||
purpose with or without fee is hereby granted.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
|
||||
REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
|
||||
AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
|
||||
INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
|
||||
LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
|
||||
OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
|
||||
PERFORMANCE OF THIS SOFTWARE.
|
||||
***************************************************************************** */
|
||||
/* global global, define, System, Reflect, Promise */
|
||||
var __extends;
|
||||
var __assign;
|
||||
var __rest;
|
||||
var __decorate;
|
||||
var __param;
|
||||
var __metadata;
|
||||
var __awaiter;
|
||||
var __generator;
|
||||
var __exportStar;
|
||||
var __values;
|
||||
var __read;
|
||||
var __spread;
|
||||
var __spreadArrays;
|
||||
var __spreadArray;
|
||||
var __await;
|
||||
var __asyncGenerator;
|
||||
var __asyncDelegator;
|
||||
var __asyncValues;
|
||||
var __makeTemplateObject;
|
||||
var __importStar;
|
||||
var __importDefault;
|
||||
var __classPrivateFieldGet;
|
||||
var __classPrivateFieldSet;
|
||||
var __createBinding;
|
||||
(function (factory) {
|
||||
var root = typeof global === "object" ? global : typeof self === "object" ? self : typeof this === "object" ? this : {};
|
||||
if (typeof define === "function" && define.amd) {
|
||||
define("tslib", ["exports"], function (exports) { factory(createExporter(root, createExporter(exports))); });
|
||||
}
|
||||
else if ( true && typeof module.exports === "object") {
|
||||
factory(createExporter(root, createExporter(module.exports)));
|
||||
}
|
||||
else {
|
||||
factory(createExporter(root));
|
||||
}
|
||||
function createExporter(exports, previous) {
|
||||
if (exports !== root) {
|
||||
if (typeof Object.create === "function") {
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
}
|
||||
else {
|
||||
exports.__esModule = true;
|
||||
}
|
||||
}
|
||||
return function (id, v) { return exports[id] = previous ? previous(id, v) : v; };
|
||||
}
|
||||
})
|
||||
(function (exporter) {
|
||||
var extendStatics = Object.setPrototypeOf ||
|
||||
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
||||
function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };
|
||||
|
||||
__extends = function (d, b) {
|
||||
if (typeof b !== "function" && b !== null)
|
||||
throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
|
||||
extendStatics(d, b);
|
||||
function __() { this.constructor = d; }
|
||||
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
||||
};
|
||||
|
||||
__assign = Object.assign || function (t) {
|
||||
for (var s, i = 1, n = arguments.length; i < n; i++) {
|
||||
s = arguments[i];
|
||||
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p)) t[p] = s[p];
|
||||
}
|
||||
return t;
|
||||
};
|
||||
|
||||
__rest = function (s, e) {
|
||||
var t = {};
|
||||
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
|
||||
t[p] = s[p];
|
||||
if (s != null && typeof Object.getOwnPropertySymbols === "function")
|
||||
for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
|
||||
if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
|
||||
t[p[i]] = s[p[i]];
|
||||
}
|
||||
return t;
|
||||
};
|
||||
|
||||
__decorate = function (decorators, target, key, desc) {
|
||||
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
||||
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
||||
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
||||
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
||||
};
|
||||
|
||||
__param = function (paramIndex, decorator) {
|
||||
return function (target, key) { decorator(target, key, paramIndex); }
|
||||
};
|
||||
|
||||
__metadata = function (metadataKey, metadataValue) {
|
||||
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(metadataKey, metadataValue);
|
||||
};
|
||||
|
||||
__awaiter = function (thisArg, _arguments, P, generator) {
|
||||
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
||||
return new (P || (P = Promise))(function (resolve, reject) {
|
||||
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
|
||||
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
|
||||
function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
|
||||
step((generator = generator.apply(thisArg, _arguments || [])).next());
|
||||
});
|
||||
};
|
||||
|
||||
__generator = function (thisArg, body) {
|
||||
var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;
|
||||
return g = { next: verb(0), "throw": verb(1), "return": verb(2) }, typeof Symbol === "function" && (g[Symbol.iterator] = function() { return this; }), g;
|
||||
function verb(n) { return function (v) { return step([n, v]); }; }
|
||||
function step(op) {
|
||||
if (f) throw new TypeError("Generator is already executing.");
|
||||
while (_) try {
|
||||
if (f = 1, y && (t = op[0] & 2 ? y["return"] : op[0] ? y["throw"] || ((t = y["return"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t;
|
||||
if (y = 0, t) op = [op[0] & 2, t.value];
|
||||
switch (op[0]) {
|
||||
case 0: case 1: t = op; break;
|
||||
case 4: _.label++; return { value: op[1], done: false };
|
||||
case 5: _.label++; y = op[1]; op = [0]; continue;
|
||||
case 7: op = _.ops.pop(); _.trys.pop(); continue;
|
||||
default:
|
||||
if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }
|
||||
if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }
|
||||
if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }
|
||||
if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }
|
||||
if (t[2]) _.ops.pop();
|
||||
_.trys.pop(); continue;
|
||||
}
|
||||
op = body.call(thisArg, _);
|
||||
} catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }
|
||||
if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };
|
||||
}
|
||||
};
|
||||
|
||||
__exportStar = function(m, o) {
|
||||
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(o, p)) __createBinding(o, m, p);
|
||||
};
|
||||
|
||||
__createBinding = Object.create ? (function(o, m, k, k2) {
|
||||
if (k2 === undefined) k2 = k;
|
||||
Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } });
|
||||
}) : (function(o, m, k, k2) {
|
||||
if (k2 === undefined) k2 = k;
|
||||
o[k2] = m[k];
|
||||
});
|
||||
|
||||
__values = function (o) {
|
||||
var s = typeof Symbol === "function" && Symbol.iterator, m = s && o[s], i = 0;
|
||||
if (m) return m.call(o);
|
||||
if (o && typeof o.length === "number") return {
|
||||
next: function () {
|
||||
if (o && i >= o.length) o = void 0;
|
||||
return { value: o && o[i++], done: !o };
|
||||
}
|
||||
};
|
||||
throw new TypeError(s ? "Object is not iterable." : "Symbol.iterator is not defined.");
|
||||
};
|
||||
|
||||
__read = function (o, n) {
|
||||
var m = typeof Symbol === "function" && o[Symbol.iterator];
|
||||
if (!m) return o;
|
||||
var i = m.call(o), r, ar = [], e;
|
||||
try {
|
||||
while ((n === void 0 || n-- > 0) && !(r = i.next()).done) ar.push(r.value);
|
||||
}
|
||||
catch (error) { e = { error: error }; }
|
||||
finally {
|
||||
try {
|
||||
if (r && !r.done && (m = i["return"])) m.call(i);
|
||||
}
|
||||
finally { if (e) throw e.error; }
|
||||
}
|
||||
return ar;
|
||||
};
|
||||
|
||||
/** @deprecated */
|
||||
__spread = function () {
|
||||
for (var ar = [], i = 0; i < arguments.length; i++)
|
||||
ar = ar.concat(__read(arguments[i]));
|
||||
return ar;
|
||||
};
|
||||
|
||||
/** @deprecated */
|
||||
__spreadArrays = function () {
|
||||
for (var s = 0, i = 0, il = arguments.length; i < il; i++) s += arguments[i].length;
|
||||
for (var r = Array(s), k = 0, i = 0; i < il; i++)
|
||||
for (var a = arguments[i], j = 0, jl = a.length; j < jl; j++, k++)
|
||||
r[k] = a[j];
|
||||
return r;
|
||||
};
|
||||
|
||||
__spreadArray = function (to, from, pack) {
|
||||
if (pack || arguments.length === 2) for (var i = 0, l = from.length, ar; i < l; i++) {
|
||||
if (ar || !(i in from)) {
|
||||
if (!ar) ar = Array.prototype.slice.call(from, 0, i);
|
||||
ar[i] = from[i];
|
||||
}
|
||||
}
|
||||
return to.concat(ar || Array.prototype.slice.call(from));
|
||||
};
|
||||
|
||||
__await = function (v) {
|
||||
return this instanceof __await ? (this.v = v, this) : new __await(v);
|
||||
};
|
||||
|
||||
__asyncGenerator = function (thisArg, _arguments, generator) {
|
||||
if (!Symbol.asyncIterator) throw new TypeError("Symbol.asyncIterator is not defined.");
|
||||
var g = generator.apply(thisArg, _arguments || []), i, q = [];
|
||||
return i = {}, verb("next"), verb("throw"), verb("return"), i[Symbol.asyncIterator] = function () { return this; }, i;
|
||||
function verb(n) { if (g[n]) i[n] = function (v) { return new Promise(function (a, b) { q.push([n, v, a, b]) > 1 || resume(n, v); }); }; }
|
||||
function resume(n, v) { try { step(g[n](v)); } catch (e) { settle(q[0][3], e); } }
|
||||
function step(r) { r.value instanceof __await ? Promise.resolve(r.value.v).then(fulfill, reject) : settle(q[0][2], r); }
|
||||
function fulfill(value) { resume("next", value); }
|
||||
function reject(value) { resume("throw", value); }
|
||||
function settle(f, v) { if (f(v), q.shift(), q.length) resume(q[0][0], q[0][1]); }
|
||||
};
|
||||
|
||||
__asyncDelegator = function (o) {
|
||||
var i, p;
|
||||
return i = {}, verb("next"), verb("throw", function (e) { throw e; }), verb("return"), i[Symbol.iterator] = function () { return this; }, i;
|
||||
function verb(n, f) { i[n] = o[n] ? function (v) { return (p = !p) ? { value: __await(o[n](v)), done: n === "return" } : f ? f(v) : v; } : f; }
|
||||
};
|
||||
|
||||
__asyncValues = function (o) {
|
||||
if (!Symbol.asyncIterator) throw new TypeError("Symbol.asyncIterator is not defined.");
|
||||
var m = o[Symbol.asyncIterator], i;
|
||||
return m ? m.call(o) : (o = typeof __values === "function" ? __values(o) : o[Symbol.iterator](), i = {}, verb("next"), verb("throw"), verb("return"), i[Symbol.asyncIterator] = function () { return this; }, i);
|
||||
function verb(n) { i[n] = o[n] && function (v) { return new Promise(function (resolve, reject) { v = o[n](v), settle(resolve, reject, v.done, v.value); }); }; }
|
||||
function settle(resolve, reject, d, v) { Promise.resolve(v).then(function(v) { resolve({ value: v, done: d }); }, reject); }
|
||||
};
|
||||
|
||||
__makeTemplateObject = function (cooked, raw) {
|
||||
if (Object.defineProperty) { Object.defineProperty(cooked, "raw", { value: raw }); } else { cooked.raw = raw; }
|
||||
return cooked;
|
||||
};
|
||||
|
||||
var __setModuleDefault = Object.create ? (function(o, v) {
|
||||
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
||||
}) : function(o, v) {
|
||||
o["default"] = v;
|
||||
};
|
||||
|
||||
__importStar = function (mod) {
|
||||
if (mod && mod.__esModule) return mod;
|
||||
var result = {};
|
||||
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
||||
__setModuleDefault(result, mod);
|
||||
return result;
|
||||
};
|
||||
|
||||
__importDefault = function (mod) {
|
||||
return (mod && mod.__esModule) ? mod : { "default": mod };
|
||||
};
|
||||
|
||||
__classPrivateFieldGet = function (receiver, state, kind, f) {
|
||||
if (kind === "a" && !f) throw new TypeError("Private accessor was defined without a getter");
|
||||
if (typeof state === "function" ? receiver !== state || !f : !state.has(receiver)) throw new TypeError("Cannot read private member from an object whose class did not declare it");
|
||||
return kind === "m" ? f : kind === "a" ? f.call(receiver) : f ? f.value : state.get(receiver);
|
||||
};
|
||||
|
||||
__classPrivateFieldSet = function (receiver, state, value, kind, f) {
|
||||
if (kind === "m") throw new TypeError("Private method is not writable");
|
||||
if (kind === "a" && !f) throw new TypeError("Private accessor was defined without a setter");
|
||||
if (typeof state === "function" ? receiver !== state || !f : !state.has(receiver)) throw new TypeError("Cannot write private member to an object whose class did not declare it");
|
||||
return (kind === "a" ? f.call(receiver, value) : f ? f.value = value : state.set(receiver, value)), value;
|
||||
};
|
||||
|
||||
exporter("__extends", __extends);
|
||||
exporter("__assign", __assign);
|
||||
exporter("__rest", __rest);
|
||||
exporter("__decorate", __decorate);
|
||||
exporter("__param", __param);
|
||||
exporter("__metadata", __metadata);
|
||||
exporter("__awaiter", __awaiter);
|
||||
exporter("__generator", __generator);
|
||||
exporter("__exportStar", __exportStar);
|
||||
exporter("__createBinding", __createBinding);
|
||||
exporter("__values", __values);
|
||||
exporter("__read", __read);
|
||||
exporter("__spread", __spread);
|
||||
exporter("__spreadArrays", __spreadArrays);
|
||||
exporter("__spreadArray", __spreadArray);
|
||||
exporter("__await", __await);
|
||||
exporter("__asyncGenerator", __asyncGenerator);
|
||||
exporter("__asyncDelegator", __asyncDelegator);
|
||||
exporter("__asyncValues", __asyncValues);
|
||||
exporter("__makeTemplateObject", __makeTemplateObject);
|
||||
exporter("__importStar", __importStar);
|
||||
exporter("__importDefault", __importDefault);
|
||||
exporter("__classPrivateFieldGet", __classPrivateFieldGet);
|
||||
exporter("__classPrivateFieldSet", __classPrivateFieldSet);
|
||||
});
|
||||
/*! *****************************************************************************
|
||||
Copyright (c) Microsoft Corporation.
|
||||
|
||||
Permission to use, copy, modify, and/or distribute this software for any
|
||||
purpose with or without fee is hereby granted.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
|
||||
REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
|
||||
AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
|
||||
INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
|
||||
LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
|
||||
OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
|
||||
PERFORMANCE OF THIS SOFTWARE.
|
||||
***************************************************************************** */
|
||||
/* global global, define, System, Reflect, Promise */
|
||||
var __extends;
|
||||
var __assign;
|
||||
var __rest;
|
||||
var __decorate;
|
||||
var __param;
|
||||
var __metadata;
|
||||
var __awaiter;
|
||||
var __generator;
|
||||
var __exportStar;
|
||||
var __values;
|
||||
var __read;
|
||||
var __spread;
|
||||
var __spreadArrays;
|
||||
var __spreadArray;
|
||||
var __await;
|
||||
var __asyncGenerator;
|
||||
var __asyncDelegator;
|
||||
var __asyncValues;
|
||||
var __makeTemplateObject;
|
||||
var __importStar;
|
||||
var __importDefault;
|
||||
var __classPrivateFieldGet;
|
||||
var __classPrivateFieldSet;
|
||||
var __createBinding;
|
||||
(function (factory) {
|
||||
var root = typeof global === "object" ? global : typeof self === "object" ? self : typeof this === "object" ? this : {};
|
||||
if (typeof define === "function" && define.amd) {
|
||||
define("tslib", ["exports"], function (exports) { factory(createExporter(root, createExporter(exports))); });
|
||||
}
|
||||
else if ( true && typeof module.exports === "object") {
|
||||
factory(createExporter(root, createExporter(module.exports)));
|
||||
}
|
||||
else {
|
||||
factory(createExporter(root));
|
||||
}
|
||||
function createExporter(exports, previous) {
|
||||
if (exports !== root) {
|
||||
if (typeof Object.create === "function") {
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
}
|
||||
else {
|
||||
exports.__esModule = true;
|
||||
}
|
||||
}
|
||||
return function (id, v) { return exports[id] = previous ? previous(id, v) : v; };
|
||||
}
|
||||
})
|
||||
(function (exporter) {
|
||||
var extendStatics = Object.setPrototypeOf ||
|
||||
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
||||
function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };
|
||||
|
||||
__extends = function (d, b) {
|
||||
if (typeof b !== "function" && b !== null)
|
||||
throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
|
||||
extendStatics(d, b);
|
||||
function __() { this.constructor = d; }
|
||||
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
||||
};
|
||||
|
||||
__assign = Object.assign || function (t) {
|
||||
for (var s, i = 1, n = arguments.length; i < n; i++) {
|
||||
s = arguments[i];
|
||||
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p)) t[p] = s[p];
|
||||
}
|
||||
return t;
|
||||
};
|
||||
|
||||
__rest = function (s, e) {
|
||||
var t = {};
|
||||
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
|
||||
t[p] = s[p];
|
||||
if (s != null && typeof Object.getOwnPropertySymbols === "function")
|
||||
for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
|
||||
if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
|
||||
t[p[i]] = s[p[i]];
|
||||
}
|
||||
return t;
|
||||
};
|
||||
|
||||
__decorate = function (decorators, target, key, desc) {
|
||||
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
||||
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
||||
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
||||
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
||||
};
|
||||
|
||||
__param = function (paramIndex, decorator) {
|
||||
return function (target, key) { decorator(target, key, paramIndex); }
|
||||
};
|
||||
|
||||
__metadata = function (metadataKey, metadataValue) {
|
||||
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(metadataKey, metadataValue);
|
||||
};
|
||||
|
||||
__awaiter = function (thisArg, _arguments, P, generator) {
|
||||
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
||||
return new (P || (P = Promise))(function (resolve, reject) {
|
||||
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
|
||||
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
|
||||
function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
|
||||
step((generator = generator.apply(thisArg, _arguments || [])).next());
|
||||
});
|
||||
};
|
||||
|
||||
__generator = function (thisArg, body) {
|
||||
var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;
|
||||
return g = { next: verb(0), "throw": verb(1), "return": verb(2) }, typeof Symbol === "function" && (g[Symbol.iterator] = function() { return this; }), g;
|
||||
function verb(n) { return function (v) { return step([n, v]); }; }
|
||||
function step(op) {
|
||||
if (f) throw new TypeError("Generator is already executing.");
|
||||
while (_) try {
|
||||
if (f = 1, y && (t = op[0] & 2 ? y["return"] : op[0] ? y["throw"] || ((t = y["return"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t;
|
||||
if (y = 0, t) op = [op[0] & 2, t.value];
|
||||
switch (op[0]) {
|
||||
case 0: case 1: t = op; break;
|
||||
case 4: _.label++; return { value: op[1], done: false };
|
||||
case 5: _.label++; y = op[1]; op = [0]; continue;
|
||||
case 7: op = _.ops.pop(); _.trys.pop(); continue;
|
||||
default:
|
||||
if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }
|
||||
if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }
|
||||
if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }
|
||||
if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }
|
||||
if (t[2]) _.ops.pop();
|
||||
_.trys.pop(); continue;
|
||||
}
|
||||
op = body.call(thisArg, _);
|
||||
} catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }
|
||||
if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };
|
||||
}
|
||||
};
|
||||
|
||||
__exportStar = function(m, o) {
|
||||
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(o, p)) __createBinding(o, m, p);
|
||||
};
|
||||
|
||||
__createBinding = Object.create ? (function(o, m, k, k2) {
|
||||
if (k2 === undefined) k2 = k;
|
||||
Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } });
|
||||
}) : (function(o, m, k, k2) {
|
||||
if (k2 === undefined) k2 = k;
|
||||
o[k2] = m[k];
|
||||
});
|
||||
|
||||
__values = function (o) {
|
||||
var s = typeof Symbol === "function" && Symbol.iterator, m = s && o[s], i = 0;
|
||||
if (m) return m.call(o);
|
||||
if (o && typeof o.length === "number") return {
|
||||
next: function () {
|
||||
if (o && i >= o.length) o = void 0;
|
||||
return { value: o && o[i++], done: !o };
|
||||
}
|
||||
};
|
||||
throw new TypeError(s ? "Object is not iterable." : "Symbol.iterator is not defined.");
|
||||
};
|
||||
|
||||
__read = function (o, n) {
|
||||
var m = typeof Symbol === "function" && o[Symbol.iterator];
|
||||
if (!m) return o;
|
||||
var i = m.call(o), r, ar = [], e;
|
||||
try {
|
||||
while ((n === void 0 || n-- > 0) && !(r = i.next()).done) ar.push(r.value);
|
||||
}
|
||||
catch (error) { e = { error: error }; }
|
||||
finally {
|
||||
try {
|
||||
if (r && !r.done && (m = i["return"])) m.call(i);
|
||||
}
|
||||
finally { if (e) throw e.error; }
|
||||
}
|
||||
return ar;
|
||||
};
|
||||
|
||||
/** @deprecated */
|
||||
__spread = function () {
|
||||
for (var ar = [], i = 0; i < arguments.length; i++)
|
||||
ar = ar.concat(__read(arguments[i]));
|
||||
return ar;
|
||||
};
|
||||
|
||||
/** @deprecated */
|
||||
__spreadArrays = function () {
|
||||
for (var s = 0, i = 0, il = arguments.length; i < il; i++) s += arguments[i].length;
|
||||
for (var r = Array(s), k = 0, i = 0; i < il; i++)
|
||||
for (var a = arguments[i], j = 0, jl = a.length; j < jl; j++, k++)
|
||||
r[k] = a[j];
|
||||
return r;
|
||||
};
|
||||
|
||||
__spreadArray = function (to, from, pack) {
|
||||
if (pack || arguments.length === 2) for (var i = 0, l = from.length, ar; i < l; i++) {
|
||||
if (ar || !(i in from)) {
|
||||
if (!ar) ar = Array.prototype.slice.call(from, 0, i);
|
||||
ar[i] = from[i];
|
||||
}
|
||||
}
|
||||
return to.concat(ar || Array.prototype.slice.call(from));
|
||||
};
|
||||
|
||||
__await = function (v) {
|
||||
return this instanceof __await ? (this.v = v, this) : new __await(v);
|
||||
};
|
||||
|
||||
__asyncGenerator = function (thisArg, _arguments, generator) {
|
||||
if (!Symbol.asyncIterator) throw new TypeError("Symbol.asyncIterator is not defined.");
|
||||
var g = generator.apply(thisArg, _arguments || []), i, q = [];
|
||||
return i = {}, verb("next"), verb("throw"), verb("return"), i[Symbol.asyncIterator] = function () { return this; }, i;
|
||||
function verb(n) { if (g[n]) i[n] = function (v) { return new Promise(function (a, b) { q.push([n, v, a, b]) > 1 || resume(n, v); }); }; }
|
||||
function resume(n, v) { try { step(g[n](v)); } catch (e) { settle(q[0][3], e); } }
|
||||
function step(r) { r.value instanceof __await ? Promise.resolve(r.value.v).then(fulfill, reject) : settle(q[0][2], r); }
|
||||
function fulfill(value) { resume("next", value); }
|
||||
function reject(value) { resume("throw", value); }
|
||||
function settle(f, v) { if (f(v), q.shift(), q.length) resume(q[0][0], q[0][1]); }
|
||||
};
|
||||
|
||||
__asyncDelegator = function (o) {
|
||||
var i, p;
|
||||
return i = {}, verb("next"), verb("throw", function (e) { throw e; }), verb("return"), i[Symbol.iterator] = function () { return this; }, i;
|
||||
function verb(n, f) { i[n] = o[n] ? function (v) { return (p = !p) ? { value: __await(o[n](v)), done: n === "return" } : f ? f(v) : v; } : f; }
|
||||
};
|
||||
|
||||
__asyncValues = function (o) {
|
||||
if (!Symbol.asyncIterator) throw new TypeError("Symbol.asyncIterator is not defined.");
|
||||
var m = o[Symbol.asyncIterator], i;
|
||||
return m ? m.call(o) : (o = typeof __values === "function" ? __values(o) : o[Symbol.iterator](), i = {}, verb("next"), verb("throw"), verb("return"), i[Symbol.asyncIterator] = function () { return this; }, i);
|
||||
function verb(n) { i[n] = o[n] && function (v) { return new Promise(function (resolve, reject) { v = o[n](v), settle(resolve, reject, v.done, v.value); }); }; }
|
||||
function settle(resolve, reject, d, v) { Promise.resolve(v).then(function(v) { resolve({ value: v, done: d }); }, reject); }
|
||||
};
|
||||
|
||||
__makeTemplateObject = function (cooked, raw) {
|
||||
if (Object.defineProperty) { Object.defineProperty(cooked, "raw", { value: raw }); } else { cooked.raw = raw; }
|
||||
return cooked;
|
||||
};
|
||||
|
||||
var __setModuleDefault = Object.create ? (function(o, v) {
|
||||
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
||||
}) : function(o, v) {
|
||||
o["default"] = v;
|
||||
};
|
||||
|
||||
__importStar = function (mod) {
|
||||
if (mod && mod.__esModule) return mod;
|
||||
var result = {};
|
||||
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
||||
__setModuleDefault(result, mod);
|
||||
return result;
|
||||
};
|
||||
|
||||
__importDefault = function (mod) {
|
||||
return (mod && mod.__esModule) ? mod : { "default": mod };
|
||||
};
|
||||
|
||||
__classPrivateFieldGet = function (receiver, state, kind, f) {
|
||||
if (kind === "a" && !f) throw new TypeError("Private accessor was defined without a getter");
|
||||
if (typeof state === "function" ? receiver !== state || !f : !state.has(receiver)) throw new TypeError("Cannot read private member from an object whose class did not declare it");
|
||||
return kind === "m" ? f : kind === "a" ? f.call(receiver) : f ? f.value : state.get(receiver);
|
||||
};
|
||||
|
||||
__classPrivateFieldSet = function (receiver, state, value, kind, f) {
|
||||
if (kind === "m") throw new TypeError("Private method is not writable");
|
||||
if (kind === "a" && !f) throw new TypeError("Private accessor was defined without a setter");
|
||||
if (typeof state === "function" ? receiver !== state || !f : !state.has(receiver)) throw new TypeError("Cannot write private member to an object whose class did not declare it");
|
||||
return (kind === "a" ? f.call(receiver, value) : f ? f.value = value : state.set(receiver, value)), value;
|
||||
};
|
||||
|
||||
exporter("__extends", __extends);
|
||||
exporter("__assign", __assign);
|
||||
exporter("__rest", __rest);
|
||||
exporter("__decorate", __decorate);
|
||||
exporter("__param", __param);
|
||||
exporter("__metadata", __metadata);
|
||||
exporter("__awaiter", __awaiter);
|
||||
exporter("__generator", __generator);
|
||||
exporter("__exportStar", __exportStar);
|
||||
exporter("__createBinding", __createBinding);
|
||||
exporter("__values", __values);
|
||||
exporter("__read", __read);
|
||||
exporter("__spread", __spread);
|
||||
exporter("__spreadArrays", __spreadArrays);
|
||||
exporter("__spreadArray", __spreadArray);
|
||||
exporter("__await", __await);
|
||||
exporter("__asyncGenerator", __asyncGenerator);
|
||||
exporter("__asyncDelegator", __asyncDelegator);
|
||||
exporter("__asyncValues", __asyncValues);
|
||||
exporter("__makeTemplateObject", __makeTemplateObject);
|
||||
exporter("__importStar", __importStar);
|
||||
exporter("__importDefault", __importDefault);
|
||||
exporter("__classPrivateFieldGet", __classPrivateFieldGet);
|
||||
exporter("__classPrivateFieldSet", __classPrivateFieldSet);
|
||||
});
|
||||
|
||||
|
||||
/***/ }),
|
||||
@ -15049,312 +15049,312 @@ module.exports = '4.0.0'
|
||||
/***/ 2107:
|
||||
/***/ ((module) => {
|
||||
|
||||
/*! *****************************************************************************
|
||||
Copyright (c) Microsoft Corporation.
|
||||
|
||||
Permission to use, copy, modify, and/or distribute this software for any
|
||||
purpose with or without fee is hereby granted.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
|
||||
REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
|
||||
AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
|
||||
INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
|
||||
LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
|
||||
OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
|
||||
PERFORMANCE OF THIS SOFTWARE.
|
||||
***************************************************************************** */
|
||||
/* global global, define, System, Reflect, Promise */
|
||||
var __extends;
|
||||
var __assign;
|
||||
var __rest;
|
||||
var __decorate;
|
||||
var __param;
|
||||
var __metadata;
|
||||
var __awaiter;
|
||||
var __generator;
|
||||
var __exportStar;
|
||||
var __values;
|
||||
var __read;
|
||||
var __spread;
|
||||
var __spreadArrays;
|
||||
var __spreadArray;
|
||||
var __await;
|
||||
var __asyncGenerator;
|
||||
var __asyncDelegator;
|
||||
var __asyncValues;
|
||||
var __makeTemplateObject;
|
||||
var __importStar;
|
||||
var __importDefault;
|
||||
var __classPrivateFieldGet;
|
||||
var __classPrivateFieldSet;
|
||||
var __createBinding;
|
||||
(function (factory) {
|
||||
var root = typeof global === "object" ? global : typeof self === "object" ? self : typeof this === "object" ? this : {};
|
||||
if (typeof define === "function" && define.amd) {
|
||||
define("tslib", ["exports"], function (exports) { factory(createExporter(root, createExporter(exports))); });
|
||||
}
|
||||
else if ( true && typeof module.exports === "object") {
|
||||
factory(createExporter(root, createExporter(module.exports)));
|
||||
}
|
||||
else {
|
||||
factory(createExporter(root));
|
||||
}
|
||||
function createExporter(exports, previous) {
|
||||
if (exports !== root) {
|
||||
if (typeof Object.create === "function") {
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
}
|
||||
else {
|
||||
exports.__esModule = true;
|
||||
}
|
||||
}
|
||||
return function (id, v) { return exports[id] = previous ? previous(id, v) : v; };
|
||||
}
|
||||
})
|
||||
(function (exporter) {
|
||||
var extendStatics = Object.setPrototypeOf ||
|
||||
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
||||
function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };
|
||||
|
||||
__extends = function (d, b) {
|
||||
if (typeof b !== "function" && b !== null)
|
||||
throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
|
||||
extendStatics(d, b);
|
||||
function __() { this.constructor = d; }
|
||||
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
||||
};
|
||||
|
||||
__assign = Object.assign || function (t) {
|
||||
for (var s, i = 1, n = arguments.length; i < n; i++) {
|
||||
s = arguments[i];
|
||||
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p)) t[p] = s[p];
|
||||
}
|
||||
return t;
|
||||
};
|
||||
|
||||
__rest = function (s, e) {
|
||||
var t = {};
|
||||
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
|
||||
t[p] = s[p];
|
||||
if (s != null && typeof Object.getOwnPropertySymbols === "function")
|
||||
for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
|
||||
if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
|
||||
t[p[i]] = s[p[i]];
|
||||
}
|
||||
return t;
|
||||
};
|
||||
|
||||
__decorate = function (decorators, target, key, desc) {
|
||||
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
||||
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
||||
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
||||
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
||||
};
|
||||
|
||||
__param = function (paramIndex, decorator) {
|
||||
return function (target, key) { decorator(target, key, paramIndex); }
|
||||
};
|
||||
|
||||
__metadata = function (metadataKey, metadataValue) {
|
||||
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(metadataKey, metadataValue);
|
||||
};
|
||||
|
||||
__awaiter = function (thisArg, _arguments, P, generator) {
|
||||
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
||||
return new (P || (P = Promise))(function (resolve, reject) {
|
||||
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
|
||||
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
|
||||
function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
|
||||
step((generator = generator.apply(thisArg, _arguments || [])).next());
|
||||
});
|
||||
};
|
||||
|
||||
__generator = function (thisArg, body) {
|
||||
var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;
|
||||
return g = { next: verb(0), "throw": verb(1), "return": verb(2) }, typeof Symbol === "function" && (g[Symbol.iterator] = function() { return this; }), g;
|
||||
function verb(n) { return function (v) { return step([n, v]); }; }
|
||||
function step(op) {
|
||||
if (f) throw new TypeError("Generator is already executing.");
|
||||
while (_) try {
|
||||
if (f = 1, y && (t = op[0] & 2 ? y["return"] : op[0] ? y["throw"] || ((t = y["return"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t;
|
||||
if (y = 0, t) op = [op[0] & 2, t.value];
|
||||
switch (op[0]) {
|
||||
case 0: case 1: t = op; break;
|
||||
case 4: _.label++; return { value: op[1], done: false };
|
||||
case 5: _.label++; y = op[1]; op = [0]; continue;
|
||||
case 7: op = _.ops.pop(); _.trys.pop(); continue;
|
||||
default:
|
||||
if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }
|
||||
if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }
|
||||
if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }
|
||||
if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }
|
||||
if (t[2]) _.ops.pop();
|
||||
_.trys.pop(); continue;
|
||||
}
|
||||
op = body.call(thisArg, _);
|
||||
} catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }
|
||||
if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };
|
||||
}
|
||||
};
|
||||
|
||||
__exportStar = function(m, o) {
|
||||
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(o, p)) __createBinding(o, m, p);
|
||||
};
|
||||
|
||||
__createBinding = Object.create ? (function(o, m, k, k2) {
|
||||
if (k2 === undefined) k2 = k;
|
||||
Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } });
|
||||
}) : (function(o, m, k, k2) {
|
||||
if (k2 === undefined) k2 = k;
|
||||
o[k2] = m[k];
|
||||
});
|
||||
|
||||
__values = function (o) {
|
||||
var s = typeof Symbol === "function" && Symbol.iterator, m = s && o[s], i = 0;
|
||||
if (m) return m.call(o);
|
||||
if (o && typeof o.length === "number") return {
|
||||
next: function () {
|
||||
if (o && i >= o.length) o = void 0;
|
||||
return { value: o && o[i++], done: !o };
|
||||
}
|
||||
};
|
||||
throw new TypeError(s ? "Object is not iterable." : "Symbol.iterator is not defined.");
|
||||
};
|
||||
|
||||
__read = function (o, n) {
|
||||
var m = typeof Symbol === "function" && o[Symbol.iterator];
|
||||
if (!m) return o;
|
||||
var i = m.call(o), r, ar = [], e;
|
||||
try {
|
||||
while ((n === void 0 || n-- > 0) && !(r = i.next()).done) ar.push(r.value);
|
||||
}
|
||||
catch (error) { e = { error: error }; }
|
||||
finally {
|
||||
try {
|
||||
if (r && !r.done && (m = i["return"])) m.call(i);
|
||||
}
|
||||
finally { if (e) throw e.error; }
|
||||
}
|
||||
return ar;
|
||||
};
|
||||
|
||||
/** @deprecated */
|
||||
__spread = function () {
|
||||
for (var ar = [], i = 0; i < arguments.length; i++)
|
||||
ar = ar.concat(__read(arguments[i]));
|
||||
return ar;
|
||||
};
|
||||
|
||||
/** @deprecated */
|
||||
__spreadArrays = function () {
|
||||
for (var s = 0, i = 0, il = arguments.length; i < il; i++) s += arguments[i].length;
|
||||
for (var r = Array(s), k = 0, i = 0; i < il; i++)
|
||||
for (var a = arguments[i], j = 0, jl = a.length; j < jl; j++, k++)
|
||||
r[k] = a[j];
|
||||
return r;
|
||||
};
|
||||
|
||||
__spreadArray = function (to, from, pack) {
|
||||
if (pack || arguments.length === 2) for (var i = 0, l = from.length, ar; i < l; i++) {
|
||||
if (ar || !(i in from)) {
|
||||
if (!ar) ar = Array.prototype.slice.call(from, 0, i);
|
||||
ar[i] = from[i];
|
||||
}
|
||||
}
|
||||
return to.concat(ar || Array.prototype.slice.call(from));
|
||||
};
|
||||
|
||||
__await = function (v) {
|
||||
return this instanceof __await ? (this.v = v, this) : new __await(v);
|
||||
};
|
||||
|
||||
__asyncGenerator = function (thisArg, _arguments, generator) {
|
||||
if (!Symbol.asyncIterator) throw new TypeError("Symbol.asyncIterator is not defined.");
|
||||
var g = generator.apply(thisArg, _arguments || []), i, q = [];
|
||||
return i = {}, verb("next"), verb("throw"), verb("return"), i[Symbol.asyncIterator] = function () { return this; }, i;
|
||||
function verb(n) { if (g[n]) i[n] = function (v) { return new Promise(function (a, b) { q.push([n, v, a, b]) > 1 || resume(n, v); }); }; }
|
||||
function resume(n, v) { try { step(g[n](v)); } catch (e) { settle(q[0][3], e); } }
|
||||
function step(r) { r.value instanceof __await ? Promise.resolve(r.value.v).then(fulfill, reject) : settle(q[0][2], r); }
|
||||
function fulfill(value) { resume("next", value); }
|
||||
function reject(value) { resume("throw", value); }
|
||||
function settle(f, v) { if (f(v), q.shift(), q.length) resume(q[0][0], q[0][1]); }
|
||||
};
|
||||
|
||||
__asyncDelegator = function (o) {
|
||||
var i, p;
|
||||
return i = {}, verb("next"), verb("throw", function (e) { throw e; }), verb("return"), i[Symbol.iterator] = function () { return this; }, i;
|
||||
function verb(n, f) { i[n] = o[n] ? function (v) { return (p = !p) ? { value: __await(o[n](v)), done: n === "return" } : f ? f(v) : v; } : f; }
|
||||
};
|
||||
|
||||
__asyncValues = function (o) {
|
||||
if (!Symbol.asyncIterator) throw new TypeError("Symbol.asyncIterator is not defined.");
|
||||
var m = o[Symbol.asyncIterator], i;
|
||||
return m ? m.call(o) : (o = typeof __values === "function" ? __values(o) : o[Symbol.iterator](), i = {}, verb("next"), verb("throw"), verb("return"), i[Symbol.asyncIterator] = function () { return this; }, i);
|
||||
function verb(n) { i[n] = o[n] && function (v) { return new Promise(function (resolve, reject) { v = o[n](v), settle(resolve, reject, v.done, v.value); }); }; }
|
||||
function settle(resolve, reject, d, v) { Promise.resolve(v).then(function(v) { resolve({ value: v, done: d }); }, reject); }
|
||||
};
|
||||
|
||||
__makeTemplateObject = function (cooked, raw) {
|
||||
if (Object.defineProperty) { Object.defineProperty(cooked, "raw", { value: raw }); } else { cooked.raw = raw; }
|
||||
return cooked;
|
||||
};
|
||||
|
||||
var __setModuleDefault = Object.create ? (function(o, v) {
|
||||
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
||||
}) : function(o, v) {
|
||||
o["default"] = v;
|
||||
};
|
||||
|
||||
__importStar = function (mod) {
|
||||
if (mod && mod.__esModule) return mod;
|
||||
var result = {};
|
||||
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
||||
__setModuleDefault(result, mod);
|
||||
return result;
|
||||
};
|
||||
|
||||
__importDefault = function (mod) {
|
||||
return (mod && mod.__esModule) ? mod : { "default": mod };
|
||||
};
|
||||
|
||||
__classPrivateFieldGet = function (receiver, state, kind, f) {
|
||||
if (kind === "a" && !f) throw new TypeError("Private accessor was defined without a getter");
|
||||
if (typeof state === "function" ? receiver !== state || !f : !state.has(receiver)) throw new TypeError("Cannot read private member from an object whose class did not declare it");
|
||||
return kind === "m" ? f : kind === "a" ? f.call(receiver) : f ? f.value : state.get(receiver);
|
||||
};
|
||||
|
||||
__classPrivateFieldSet = function (receiver, state, value, kind, f) {
|
||||
if (kind === "m") throw new TypeError("Private method is not writable");
|
||||
if (kind === "a" && !f) throw new TypeError("Private accessor was defined without a setter");
|
||||
if (typeof state === "function" ? receiver !== state || !f : !state.has(receiver)) throw new TypeError("Cannot write private member to an object whose class did not declare it");
|
||||
return (kind === "a" ? f.call(receiver, value) : f ? f.value = value : state.set(receiver, value)), value;
|
||||
};
|
||||
|
||||
exporter("__extends", __extends);
|
||||
exporter("__assign", __assign);
|
||||
exporter("__rest", __rest);
|
||||
exporter("__decorate", __decorate);
|
||||
exporter("__param", __param);
|
||||
exporter("__metadata", __metadata);
|
||||
exporter("__awaiter", __awaiter);
|
||||
exporter("__generator", __generator);
|
||||
exporter("__exportStar", __exportStar);
|
||||
exporter("__createBinding", __createBinding);
|
||||
exporter("__values", __values);
|
||||
exporter("__read", __read);
|
||||
exporter("__spread", __spread);
|
||||
exporter("__spreadArrays", __spreadArrays);
|
||||
exporter("__spreadArray", __spreadArray);
|
||||
exporter("__await", __await);
|
||||
exporter("__asyncGenerator", __asyncGenerator);
|
||||
exporter("__asyncDelegator", __asyncDelegator);
|
||||
exporter("__asyncValues", __asyncValues);
|
||||
exporter("__makeTemplateObject", __makeTemplateObject);
|
||||
exporter("__importStar", __importStar);
|
||||
exporter("__importDefault", __importDefault);
|
||||
exporter("__classPrivateFieldGet", __classPrivateFieldGet);
|
||||
exporter("__classPrivateFieldSet", __classPrivateFieldSet);
|
||||
});
|
||||
/*! *****************************************************************************
|
||||
Copyright (c) Microsoft Corporation.
|
||||
|
||||
Permission to use, copy, modify, and/or distribute this software for any
|
||||
purpose with or without fee is hereby granted.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
|
||||
REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
|
||||
AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
|
||||
INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
|
||||
LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
|
||||
OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
|
||||
PERFORMANCE OF THIS SOFTWARE.
|
||||
***************************************************************************** */
|
||||
/* global global, define, System, Reflect, Promise */
|
||||
var __extends;
|
||||
var __assign;
|
||||
var __rest;
|
||||
var __decorate;
|
||||
var __param;
|
||||
var __metadata;
|
||||
var __awaiter;
|
||||
var __generator;
|
||||
var __exportStar;
|
||||
var __values;
|
||||
var __read;
|
||||
var __spread;
|
||||
var __spreadArrays;
|
||||
var __spreadArray;
|
||||
var __await;
|
||||
var __asyncGenerator;
|
||||
var __asyncDelegator;
|
||||
var __asyncValues;
|
||||
var __makeTemplateObject;
|
||||
var __importStar;
|
||||
var __importDefault;
|
||||
var __classPrivateFieldGet;
|
||||
var __classPrivateFieldSet;
|
||||
var __createBinding;
|
||||
(function (factory) {
|
||||
var root = typeof global === "object" ? global : typeof self === "object" ? self : typeof this === "object" ? this : {};
|
||||
if (typeof define === "function" && define.amd) {
|
||||
define("tslib", ["exports"], function (exports) { factory(createExporter(root, createExporter(exports))); });
|
||||
}
|
||||
else if ( true && typeof module.exports === "object") {
|
||||
factory(createExporter(root, createExporter(module.exports)));
|
||||
}
|
||||
else {
|
||||
factory(createExporter(root));
|
||||
}
|
||||
function createExporter(exports, previous) {
|
||||
if (exports !== root) {
|
||||
if (typeof Object.create === "function") {
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
}
|
||||
else {
|
||||
exports.__esModule = true;
|
||||
}
|
||||
}
|
||||
return function (id, v) { return exports[id] = previous ? previous(id, v) : v; };
|
||||
}
|
||||
})
|
||||
(function (exporter) {
|
||||
var extendStatics = Object.setPrototypeOf ||
|
||||
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
||||
function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };
|
||||
|
||||
__extends = function (d, b) {
|
||||
if (typeof b !== "function" && b !== null)
|
||||
throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
|
||||
extendStatics(d, b);
|
||||
function __() { this.constructor = d; }
|
||||
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
||||
};
|
||||
|
||||
__assign = Object.assign || function (t) {
|
||||
for (var s, i = 1, n = arguments.length; i < n; i++) {
|
||||
s = arguments[i];
|
||||
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p)) t[p] = s[p];
|
||||
}
|
||||
return t;
|
||||
};
|
||||
|
||||
__rest = function (s, e) {
|
||||
var t = {};
|
||||
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
|
||||
t[p] = s[p];
|
||||
if (s != null && typeof Object.getOwnPropertySymbols === "function")
|
||||
for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
|
||||
if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
|
||||
t[p[i]] = s[p[i]];
|
||||
}
|
||||
return t;
|
||||
};
|
||||
|
||||
__decorate = function (decorators, target, key, desc) {
|
||||
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
||||
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
||||
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
||||
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
||||
};
|
||||
|
||||
__param = function (paramIndex, decorator) {
|
||||
return function (target, key) { decorator(target, key, paramIndex); }
|
||||
};
|
||||
|
||||
__metadata = function (metadataKey, metadataValue) {
|
||||
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(metadataKey, metadataValue);
|
||||
};
|
||||
|
||||
__awaiter = function (thisArg, _arguments, P, generator) {
|
||||
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
||||
return new (P || (P = Promise))(function (resolve, reject) {
|
||||
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
|
||||
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
|
||||
function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
|
||||
step((generator = generator.apply(thisArg, _arguments || [])).next());
|
||||
});
|
||||
};
|
||||
|
||||
__generator = function (thisArg, body) {
|
||||
var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;
|
||||
return g = { next: verb(0), "throw": verb(1), "return": verb(2) }, typeof Symbol === "function" && (g[Symbol.iterator] = function() { return this; }), g;
|
||||
function verb(n) { return function (v) { return step([n, v]); }; }
|
||||
function step(op) {
|
||||
if (f) throw new TypeError("Generator is already executing.");
|
||||
while (_) try {
|
||||
if (f = 1, y && (t = op[0] & 2 ? y["return"] : op[0] ? y["throw"] || ((t = y["return"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t;
|
||||
if (y = 0, t) op = [op[0] & 2, t.value];
|
||||
switch (op[0]) {
|
||||
case 0: case 1: t = op; break;
|
||||
case 4: _.label++; return { value: op[1], done: false };
|
||||
case 5: _.label++; y = op[1]; op = [0]; continue;
|
||||
case 7: op = _.ops.pop(); _.trys.pop(); continue;
|
||||
default:
|
||||
if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }
|
||||
if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }
|
||||
if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }
|
||||
if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }
|
||||
if (t[2]) _.ops.pop();
|
||||
_.trys.pop(); continue;
|
||||
}
|
||||
op = body.call(thisArg, _);
|
||||
} catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }
|
||||
if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };
|
||||
}
|
||||
};
|
||||
|
||||
__exportStar = function(m, o) {
|
||||
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(o, p)) __createBinding(o, m, p);
|
||||
};
|
||||
|
||||
__createBinding = Object.create ? (function(o, m, k, k2) {
|
||||
if (k2 === undefined) k2 = k;
|
||||
Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } });
|
||||
}) : (function(o, m, k, k2) {
|
||||
if (k2 === undefined) k2 = k;
|
||||
o[k2] = m[k];
|
||||
});
|
||||
|
||||
__values = function (o) {
|
||||
var s = typeof Symbol === "function" && Symbol.iterator, m = s && o[s], i = 0;
|
||||
if (m) return m.call(o);
|
||||
if (o && typeof o.length === "number") return {
|
||||
next: function () {
|
||||
if (o && i >= o.length) o = void 0;
|
||||
return { value: o && o[i++], done: !o };
|
||||
}
|
||||
};
|
||||
throw new TypeError(s ? "Object is not iterable." : "Symbol.iterator is not defined.");
|
||||
};
|
||||
|
||||
__read = function (o, n) {
|
||||
var m = typeof Symbol === "function" && o[Symbol.iterator];
|
||||
if (!m) return o;
|
||||
var i = m.call(o), r, ar = [], e;
|
||||
try {
|
||||
while ((n === void 0 || n-- > 0) && !(r = i.next()).done) ar.push(r.value);
|
||||
}
|
||||
catch (error) { e = { error: error }; }
|
||||
finally {
|
||||
try {
|
||||
if (r && !r.done && (m = i["return"])) m.call(i);
|
||||
}
|
||||
finally { if (e) throw e.error; }
|
||||
}
|
||||
return ar;
|
||||
};
|
||||
|
||||
/** @deprecated */
|
||||
__spread = function () {
|
||||
for (var ar = [], i = 0; i < arguments.length; i++)
|
||||
ar = ar.concat(__read(arguments[i]));
|
||||
return ar;
|
||||
};
|
||||
|
||||
/** @deprecated */
|
||||
__spreadArrays = function () {
|
||||
for (var s = 0, i = 0, il = arguments.length; i < il; i++) s += arguments[i].length;
|
||||
for (var r = Array(s), k = 0, i = 0; i < il; i++)
|
||||
for (var a = arguments[i], j = 0, jl = a.length; j < jl; j++, k++)
|
||||
r[k] = a[j];
|
||||
return r;
|
||||
};
|
||||
|
||||
__spreadArray = function (to, from, pack) {
|
||||
if (pack || arguments.length === 2) for (var i = 0, l = from.length, ar; i < l; i++) {
|
||||
if (ar || !(i in from)) {
|
||||
if (!ar) ar = Array.prototype.slice.call(from, 0, i);
|
||||
ar[i] = from[i];
|
||||
}
|
||||
}
|
||||
return to.concat(ar || Array.prototype.slice.call(from));
|
||||
};
|
||||
|
||||
__await = function (v) {
|
||||
return this instanceof __await ? (this.v = v, this) : new __await(v);
|
||||
};
|
||||
|
||||
__asyncGenerator = function (thisArg, _arguments, generator) {
|
||||
if (!Symbol.asyncIterator) throw new TypeError("Symbol.asyncIterator is not defined.");
|
||||
var g = generator.apply(thisArg, _arguments || []), i, q = [];
|
||||
return i = {}, verb("next"), verb("throw"), verb("return"), i[Symbol.asyncIterator] = function () { return this; }, i;
|
||||
function verb(n) { if (g[n]) i[n] = function (v) { return new Promise(function (a, b) { q.push([n, v, a, b]) > 1 || resume(n, v); }); }; }
|
||||
function resume(n, v) { try { step(g[n](v)); } catch (e) { settle(q[0][3], e); } }
|
||||
function step(r) { r.value instanceof __await ? Promise.resolve(r.value.v).then(fulfill, reject) : settle(q[0][2], r); }
|
||||
function fulfill(value) { resume("next", value); }
|
||||
function reject(value) { resume("throw", value); }
|
||||
function settle(f, v) { if (f(v), q.shift(), q.length) resume(q[0][0], q[0][1]); }
|
||||
};
|
||||
|
||||
__asyncDelegator = function (o) {
|
||||
var i, p;
|
||||
return i = {}, verb("next"), verb("throw", function (e) { throw e; }), verb("return"), i[Symbol.iterator] = function () { return this; }, i;
|
||||
function verb(n, f) { i[n] = o[n] ? function (v) { return (p = !p) ? { value: __await(o[n](v)), done: n === "return" } : f ? f(v) : v; } : f; }
|
||||
};
|
||||
|
||||
__asyncValues = function (o) {
|
||||
if (!Symbol.asyncIterator) throw new TypeError("Symbol.asyncIterator is not defined.");
|
||||
var m = o[Symbol.asyncIterator], i;
|
||||
return m ? m.call(o) : (o = typeof __values === "function" ? __values(o) : o[Symbol.iterator](), i = {}, verb("next"), verb("throw"), verb("return"), i[Symbol.asyncIterator] = function () { return this; }, i);
|
||||
function verb(n) { i[n] = o[n] && function (v) { return new Promise(function (resolve, reject) { v = o[n](v), settle(resolve, reject, v.done, v.value); }); }; }
|
||||
function settle(resolve, reject, d, v) { Promise.resolve(v).then(function(v) { resolve({ value: v, done: d }); }, reject); }
|
||||
};
|
||||
|
||||
__makeTemplateObject = function (cooked, raw) {
|
||||
if (Object.defineProperty) { Object.defineProperty(cooked, "raw", { value: raw }); } else { cooked.raw = raw; }
|
||||
return cooked;
|
||||
};
|
||||
|
||||
var __setModuleDefault = Object.create ? (function(o, v) {
|
||||
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
||||
}) : function(o, v) {
|
||||
o["default"] = v;
|
||||
};
|
||||
|
||||
__importStar = function (mod) {
|
||||
if (mod && mod.__esModule) return mod;
|
||||
var result = {};
|
||||
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
||||
__setModuleDefault(result, mod);
|
||||
return result;
|
||||
};
|
||||
|
||||
__importDefault = function (mod) {
|
||||
return (mod && mod.__esModule) ? mod : { "default": mod };
|
||||
};
|
||||
|
||||
__classPrivateFieldGet = function (receiver, state, kind, f) {
|
||||
if (kind === "a" && !f) throw new TypeError("Private accessor was defined without a getter");
|
||||
if (typeof state === "function" ? receiver !== state || !f : !state.has(receiver)) throw new TypeError("Cannot read private member from an object whose class did not declare it");
|
||||
return kind === "m" ? f : kind === "a" ? f.call(receiver) : f ? f.value : state.get(receiver);
|
||||
};
|
||||
|
||||
__classPrivateFieldSet = function (receiver, state, value, kind, f) {
|
||||
if (kind === "m") throw new TypeError("Private method is not writable");
|
||||
if (kind === "a" && !f) throw new TypeError("Private accessor was defined without a setter");
|
||||
if (typeof state === "function" ? receiver !== state || !f : !state.has(receiver)) throw new TypeError("Cannot write private member to an object whose class did not declare it");
|
||||
return (kind === "a" ? f.call(receiver, value) : f ? f.value = value : state.set(receiver, value)), value;
|
||||
};
|
||||
|
||||
exporter("__extends", __extends);
|
||||
exporter("__assign", __assign);
|
||||
exporter("__rest", __rest);
|
||||
exporter("__decorate", __decorate);
|
||||
exporter("__param", __param);
|
||||
exporter("__metadata", __metadata);
|
||||
exporter("__awaiter", __awaiter);
|
||||
exporter("__generator", __generator);
|
||||
exporter("__exportStar", __exportStar);
|
||||
exporter("__createBinding", __createBinding);
|
||||
exporter("__values", __values);
|
||||
exporter("__read", __read);
|
||||
exporter("__spread", __spread);
|
||||
exporter("__spreadArrays", __spreadArrays);
|
||||
exporter("__spreadArray", __spreadArray);
|
||||
exporter("__await", __await);
|
||||
exporter("__asyncGenerator", __asyncGenerator);
|
||||
exporter("__asyncDelegator", __asyncDelegator);
|
||||
exporter("__asyncValues", __asyncValues);
|
||||
exporter("__makeTemplateObject", __makeTemplateObject);
|
||||
exporter("__importStar", __importStar);
|
||||
exporter("__importDefault", __importDefault);
|
||||
exporter("__classPrivateFieldGet", __classPrivateFieldGet);
|
||||
exporter("__classPrivateFieldSet", __classPrivateFieldSet);
|
||||
});
|
||||
|
||||
|
||||
/***/ }),
|
||||
@ -16849,312 +16849,312 @@ exports.getPagedAsyncIterator = getPagedAsyncIterator;
|
||||
/***/ 6429:
|
||||
/***/ ((module) => {
|
||||
|
||||
/*! *****************************************************************************
|
||||
Copyright (c) Microsoft Corporation.
|
||||
|
||||
Permission to use, copy, modify, and/or distribute this software for any
|
||||
purpose with or without fee is hereby granted.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
|
||||
REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
|
||||
AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
|
||||
INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
|
||||
LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
|
||||
OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
|
||||
PERFORMANCE OF THIS SOFTWARE.
|
||||
***************************************************************************** */
|
||||
/* global global, define, System, Reflect, Promise */
|
||||
var __extends;
|
||||
var __assign;
|
||||
var __rest;
|
||||
var __decorate;
|
||||
var __param;
|
||||
var __metadata;
|
||||
var __awaiter;
|
||||
var __generator;
|
||||
var __exportStar;
|
||||
var __values;
|
||||
var __read;
|
||||
var __spread;
|
||||
var __spreadArrays;
|
||||
var __spreadArray;
|
||||
var __await;
|
||||
var __asyncGenerator;
|
||||
var __asyncDelegator;
|
||||
var __asyncValues;
|
||||
var __makeTemplateObject;
|
||||
var __importStar;
|
||||
var __importDefault;
|
||||
var __classPrivateFieldGet;
|
||||
var __classPrivateFieldSet;
|
||||
var __createBinding;
|
||||
(function (factory) {
|
||||
var root = typeof global === "object" ? global : typeof self === "object" ? self : typeof this === "object" ? this : {};
|
||||
if (typeof define === "function" && define.amd) {
|
||||
define("tslib", ["exports"], function (exports) { factory(createExporter(root, createExporter(exports))); });
|
||||
}
|
||||
else if ( true && typeof module.exports === "object") {
|
||||
factory(createExporter(root, createExporter(module.exports)));
|
||||
}
|
||||
else {
|
||||
factory(createExporter(root));
|
||||
}
|
||||
function createExporter(exports, previous) {
|
||||
if (exports !== root) {
|
||||
if (typeof Object.create === "function") {
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
}
|
||||
else {
|
||||
exports.__esModule = true;
|
||||
}
|
||||
}
|
||||
return function (id, v) { return exports[id] = previous ? previous(id, v) : v; };
|
||||
}
|
||||
})
|
||||
(function (exporter) {
|
||||
var extendStatics = Object.setPrototypeOf ||
|
||||
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
||||
function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };
|
||||
|
||||
__extends = function (d, b) {
|
||||
if (typeof b !== "function" && b !== null)
|
||||
throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
|
||||
extendStatics(d, b);
|
||||
function __() { this.constructor = d; }
|
||||
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
||||
};
|
||||
|
||||
__assign = Object.assign || function (t) {
|
||||
for (var s, i = 1, n = arguments.length; i < n; i++) {
|
||||
s = arguments[i];
|
||||
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p)) t[p] = s[p];
|
||||
}
|
||||
return t;
|
||||
};
|
||||
|
||||
__rest = function (s, e) {
|
||||
var t = {};
|
||||
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
|
||||
t[p] = s[p];
|
||||
if (s != null && typeof Object.getOwnPropertySymbols === "function")
|
||||
for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
|
||||
if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
|
||||
t[p[i]] = s[p[i]];
|
||||
}
|
||||
return t;
|
||||
};
|
||||
|
||||
__decorate = function (decorators, target, key, desc) {
|
||||
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
||||
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
||||
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
||||
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
||||
};
|
||||
|
||||
__param = function (paramIndex, decorator) {
|
||||
return function (target, key) { decorator(target, key, paramIndex); }
|
||||
};
|
||||
|
||||
__metadata = function (metadataKey, metadataValue) {
|
||||
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(metadataKey, metadataValue);
|
||||
};
|
||||
|
||||
__awaiter = function (thisArg, _arguments, P, generator) {
|
||||
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
||||
return new (P || (P = Promise))(function (resolve, reject) {
|
||||
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
|
||||
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
|
||||
function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
|
||||
step((generator = generator.apply(thisArg, _arguments || [])).next());
|
||||
});
|
||||
};
|
||||
|
||||
__generator = function (thisArg, body) {
|
||||
var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;
|
||||
return g = { next: verb(0), "throw": verb(1), "return": verb(2) }, typeof Symbol === "function" && (g[Symbol.iterator] = function() { return this; }), g;
|
||||
function verb(n) { return function (v) { return step([n, v]); }; }
|
||||
function step(op) {
|
||||
if (f) throw new TypeError("Generator is already executing.");
|
||||
while (_) try {
|
||||
if (f = 1, y && (t = op[0] & 2 ? y["return"] : op[0] ? y["throw"] || ((t = y["return"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t;
|
||||
if (y = 0, t) op = [op[0] & 2, t.value];
|
||||
switch (op[0]) {
|
||||
case 0: case 1: t = op; break;
|
||||
case 4: _.label++; return { value: op[1], done: false };
|
||||
case 5: _.label++; y = op[1]; op = [0]; continue;
|
||||
case 7: op = _.ops.pop(); _.trys.pop(); continue;
|
||||
default:
|
||||
if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }
|
||||
if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }
|
||||
if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }
|
||||
if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }
|
||||
if (t[2]) _.ops.pop();
|
||||
_.trys.pop(); continue;
|
||||
}
|
||||
op = body.call(thisArg, _);
|
||||
} catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }
|
||||
if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };
|
||||
}
|
||||
};
|
||||
|
||||
__exportStar = function(m, o) {
|
||||
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(o, p)) __createBinding(o, m, p);
|
||||
};
|
||||
|
||||
__createBinding = Object.create ? (function(o, m, k, k2) {
|
||||
if (k2 === undefined) k2 = k;
|
||||
Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } });
|
||||
}) : (function(o, m, k, k2) {
|
||||
if (k2 === undefined) k2 = k;
|
||||
o[k2] = m[k];
|
||||
});
|
||||
|
||||
__values = function (o) {
|
||||
var s = typeof Symbol === "function" && Symbol.iterator, m = s && o[s], i = 0;
|
||||
if (m) return m.call(o);
|
||||
if (o && typeof o.length === "number") return {
|
||||
next: function () {
|
||||
if (o && i >= o.length) o = void 0;
|
||||
return { value: o && o[i++], done: !o };
|
||||
}
|
||||
};
|
||||
throw new TypeError(s ? "Object is not iterable." : "Symbol.iterator is not defined.");
|
||||
};
|
||||
|
||||
__read = function (o, n) {
|
||||
var m = typeof Symbol === "function" && o[Symbol.iterator];
|
||||
if (!m) return o;
|
||||
var i = m.call(o), r, ar = [], e;
|
||||
try {
|
||||
while ((n === void 0 || n-- > 0) && !(r = i.next()).done) ar.push(r.value);
|
||||
}
|
||||
catch (error) { e = { error: error }; }
|
||||
finally {
|
||||
try {
|
||||
if (r && !r.done && (m = i["return"])) m.call(i);
|
||||
}
|
||||
finally { if (e) throw e.error; }
|
||||
}
|
||||
return ar;
|
||||
};
|
||||
|
||||
/** @deprecated */
|
||||
__spread = function () {
|
||||
for (var ar = [], i = 0; i < arguments.length; i++)
|
||||
ar = ar.concat(__read(arguments[i]));
|
||||
return ar;
|
||||
};
|
||||
|
||||
/** @deprecated */
|
||||
__spreadArrays = function () {
|
||||
for (var s = 0, i = 0, il = arguments.length; i < il; i++) s += arguments[i].length;
|
||||
for (var r = Array(s), k = 0, i = 0; i < il; i++)
|
||||
for (var a = arguments[i], j = 0, jl = a.length; j < jl; j++, k++)
|
||||
r[k] = a[j];
|
||||
return r;
|
||||
};
|
||||
|
||||
__spreadArray = function (to, from, pack) {
|
||||
if (pack || arguments.length === 2) for (var i = 0, l = from.length, ar; i < l; i++) {
|
||||
if (ar || !(i in from)) {
|
||||
if (!ar) ar = Array.prototype.slice.call(from, 0, i);
|
||||
ar[i] = from[i];
|
||||
}
|
||||
}
|
||||
return to.concat(ar || Array.prototype.slice.call(from));
|
||||
};
|
||||
|
||||
__await = function (v) {
|
||||
return this instanceof __await ? (this.v = v, this) : new __await(v);
|
||||
};
|
||||
|
||||
__asyncGenerator = function (thisArg, _arguments, generator) {
|
||||
if (!Symbol.asyncIterator) throw new TypeError("Symbol.asyncIterator is not defined.");
|
||||
var g = generator.apply(thisArg, _arguments || []), i, q = [];
|
||||
return i = {}, verb("next"), verb("throw"), verb("return"), i[Symbol.asyncIterator] = function () { return this; }, i;
|
||||
function verb(n) { if (g[n]) i[n] = function (v) { return new Promise(function (a, b) { q.push([n, v, a, b]) > 1 || resume(n, v); }); }; }
|
||||
function resume(n, v) { try { step(g[n](v)); } catch (e) { settle(q[0][3], e); } }
|
||||
function step(r) { r.value instanceof __await ? Promise.resolve(r.value.v).then(fulfill, reject) : settle(q[0][2], r); }
|
||||
function fulfill(value) { resume("next", value); }
|
||||
function reject(value) { resume("throw", value); }
|
||||
function settle(f, v) { if (f(v), q.shift(), q.length) resume(q[0][0], q[0][1]); }
|
||||
};
|
||||
|
||||
__asyncDelegator = function (o) {
|
||||
var i, p;
|
||||
return i = {}, verb("next"), verb("throw", function (e) { throw e; }), verb("return"), i[Symbol.iterator] = function () { return this; }, i;
|
||||
function verb(n, f) { i[n] = o[n] ? function (v) { return (p = !p) ? { value: __await(o[n](v)), done: n === "return" } : f ? f(v) : v; } : f; }
|
||||
};
|
||||
|
||||
__asyncValues = function (o) {
|
||||
if (!Symbol.asyncIterator) throw new TypeError("Symbol.asyncIterator is not defined.");
|
||||
var m = o[Symbol.asyncIterator], i;
|
||||
return m ? m.call(o) : (o = typeof __values === "function" ? __values(o) : o[Symbol.iterator](), i = {}, verb("next"), verb("throw"), verb("return"), i[Symbol.asyncIterator] = function () { return this; }, i);
|
||||
function verb(n) { i[n] = o[n] && function (v) { return new Promise(function (resolve, reject) { v = o[n](v), settle(resolve, reject, v.done, v.value); }); }; }
|
||||
function settle(resolve, reject, d, v) { Promise.resolve(v).then(function(v) { resolve({ value: v, done: d }); }, reject); }
|
||||
};
|
||||
|
||||
__makeTemplateObject = function (cooked, raw) {
|
||||
if (Object.defineProperty) { Object.defineProperty(cooked, "raw", { value: raw }); } else { cooked.raw = raw; }
|
||||
return cooked;
|
||||
};
|
||||
|
||||
var __setModuleDefault = Object.create ? (function(o, v) {
|
||||
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
||||
}) : function(o, v) {
|
||||
o["default"] = v;
|
||||
};
|
||||
|
||||
__importStar = function (mod) {
|
||||
if (mod && mod.__esModule) return mod;
|
||||
var result = {};
|
||||
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
||||
__setModuleDefault(result, mod);
|
||||
return result;
|
||||
};
|
||||
|
||||
__importDefault = function (mod) {
|
||||
return (mod && mod.__esModule) ? mod : { "default": mod };
|
||||
};
|
||||
|
||||
__classPrivateFieldGet = function (receiver, state, kind, f) {
|
||||
if (kind === "a" && !f) throw new TypeError("Private accessor was defined without a getter");
|
||||
if (typeof state === "function" ? receiver !== state || !f : !state.has(receiver)) throw new TypeError("Cannot read private member from an object whose class did not declare it");
|
||||
return kind === "m" ? f : kind === "a" ? f.call(receiver) : f ? f.value : state.get(receiver);
|
||||
};
|
||||
|
||||
__classPrivateFieldSet = function (receiver, state, value, kind, f) {
|
||||
if (kind === "m") throw new TypeError("Private method is not writable");
|
||||
if (kind === "a" && !f) throw new TypeError("Private accessor was defined without a setter");
|
||||
if (typeof state === "function" ? receiver !== state || !f : !state.has(receiver)) throw new TypeError("Cannot write private member to an object whose class did not declare it");
|
||||
return (kind === "a" ? f.call(receiver, value) : f ? f.value = value : state.set(receiver, value)), value;
|
||||
};
|
||||
|
||||
exporter("__extends", __extends);
|
||||
exporter("__assign", __assign);
|
||||
exporter("__rest", __rest);
|
||||
exporter("__decorate", __decorate);
|
||||
exporter("__param", __param);
|
||||
exporter("__metadata", __metadata);
|
||||
exporter("__awaiter", __awaiter);
|
||||
exporter("__generator", __generator);
|
||||
exporter("__exportStar", __exportStar);
|
||||
exporter("__createBinding", __createBinding);
|
||||
exporter("__values", __values);
|
||||
exporter("__read", __read);
|
||||
exporter("__spread", __spread);
|
||||
exporter("__spreadArrays", __spreadArrays);
|
||||
exporter("__spreadArray", __spreadArray);
|
||||
exporter("__await", __await);
|
||||
exporter("__asyncGenerator", __asyncGenerator);
|
||||
exporter("__asyncDelegator", __asyncDelegator);
|
||||
exporter("__asyncValues", __asyncValues);
|
||||
exporter("__makeTemplateObject", __makeTemplateObject);
|
||||
exporter("__importStar", __importStar);
|
||||
exporter("__importDefault", __importDefault);
|
||||
exporter("__classPrivateFieldGet", __classPrivateFieldGet);
|
||||
exporter("__classPrivateFieldSet", __classPrivateFieldSet);
|
||||
});
|
||||
/*! *****************************************************************************
|
||||
Copyright (c) Microsoft Corporation.
|
||||
|
||||
Permission to use, copy, modify, and/or distribute this software for any
|
||||
purpose with or without fee is hereby granted.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
|
||||
REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
|
||||
AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
|
||||
INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
|
||||
LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
|
||||
OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
|
||||
PERFORMANCE OF THIS SOFTWARE.
|
||||
***************************************************************************** */
|
||||
/* global global, define, System, Reflect, Promise */
|
||||
var __extends;
|
||||
var __assign;
|
||||
var __rest;
|
||||
var __decorate;
|
||||
var __param;
|
||||
var __metadata;
|
||||
var __awaiter;
|
||||
var __generator;
|
||||
var __exportStar;
|
||||
var __values;
|
||||
var __read;
|
||||
var __spread;
|
||||
var __spreadArrays;
|
||||
var __spreadArray;
|
||||
var __await;
|
||||
var __asyncGenerator;
|
||||
var __asyncDelegator;
|
||||
var __asyncValues;
|
||||
var __makeTemplateObject;
|
||||
var __importStar;
|
||||
var __importDefault;
|
||||
var __classPrivateFieldGet;
|
||||
var __classPrivateFieldSet;
|
||||
var __createBinding;
|
||||
(function (factory) {
|
||||
var root = typeof global === "object" ? global : typeof self === "object" ? self : typeof this === "object" ? this : {};
|
||||
if (typeof define === "function" && define.amd) {
|
||||
define("tslib", ["exports"], function (exports) { factory(createExporter(root, createExporter(exports))); });
|
||||
}
|
||||
else if ( true && typeof module.exports === "object") {
|
||||
factory(createExporter(root, createExporter(module.exports)));
|
||||
}
|
||||
else {
|
||||
factory(createExporter(root));
|
||||
}
|
||||
function createExporter(exports, previous) {
|
||||
if (exports !== root) {
|
||||
if (typeof Object.create === "function") {
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
}
|
||||
else {
|
||||
exports.__esModule = true;
|
||||
}
|
||||
}
|
||||
return function (id, v) { return exports[id] = previous ? previous(id, v) : v; };
|
||||
}
|
||||
})
|
||||
(function (exporter) {
|
||||
var extendStatics = Object.setPrototypeOf ||
|
||||
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
||||
function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };
|
||||
|
||||
__extends = function (d, b) {
|
||||
if (typeof b !== "function" && b !== null)
|
||||
throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
|
||||
extendStatics(d, b);
|
||||
function __() { this.constructor = d; }
|
||||
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
||||
};
|
||||
|
||||
__assign = Object.assign || function (t) {
|
||||
for (var s, i = 1, n = arguments.length; i < n; i++) {
|
||||
s = arguments[i];
|
||||
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p)) t[p] = s[p];
|
||||
}
|
||||
return t;
|
||||
};
|
||||
|
||||
__rest = function (s, e) {
|
||||
var t = {};
|
||||
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
|
||||
t[p] = s[p];
|
||||
if (s != null && typeof Object.getOwnPropertySymbols === "function")
|
||||
for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
|
||||
if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
|
||||
t[p[i]] = s[p[i]];
|
||||
}
|
||||
return t;
|
||||
};
|
||||
|
||||
__decorate = function (decorators, target, key, desc) {
|
||||
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
||||
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
||||
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
||||
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
||||
};
|
||||
|
||||
__param = function (paramIndex, decorator) {
|
||||
return function (target, key) { decorator(target, key, paramIndex); }
|
||||
};
|
||||
|
||||
__metadata = function (metadataKey, metadataValue) {
|
||||
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(metadataKey, metadataValue);
|
||||
};
|
||||
|
||||
__awaiter = function (thisArg, _arguments, P, generator) {
|
||||
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
||||
return new (P || (P = Promise))(function (resolve, reject) {
|
||||
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
|
||||
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
|
||||
function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
|
||||
step((generator = generator.apply(thisArg, _arguments || [])).next());
|
||||
});
|
||||
};
|
||||
|
||||
__generator = function (thisArg, body) {
|
||||
var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;
|
||||
return g = { next: verb(0), "throw": verb(1), "return": verb(2) }, typeof Symbol === "function" && (g[Symbol.iterator] = function() { return this; }), g;
|
||||
function verb(n) { return function (v) { return step([n, v]); }; }
|
||||
function step(op) {
|
||||
if (f) throw new TypeError("Generator is already executing.");
|
||||
while (_) try {
|
||||
if (f = 1, y && (t = op[0] & 2 ? y["return"] : op[0] ? y["throw"] || ((t = y["return"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t;
|
||||
if (y = 0, t) op = [op[0] & 2, t.value];
|
||||
switch (op[0]) {
|
||||
case 0: case 1: t = op; break;
|
||||
case 4: _.label++; return { value: op[1], done: false };
|
||||
case 5: _.label++; y = op[1]; op = [0]; continue;
|
||||
case 7: op = _.ops.pop(); _.trys.pop(); continue;
|
||||
default:
|
||||
if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }
|
||||
if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }
|
||||
if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }
|
||||
if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }
|
||||
if (t[2]) _.ops.pop();
|
||||
_.trys.pop(); continue;
|
||||
}
|
||||
op = body.call(thisArg, _);
|
||||
} catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }
|
||||
if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };
|
||||
}
|
||||
};
|
||||
|
||||
__exportStar = function(m, o) {
|
||||
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(o, p)) __createBinding(o, m, p);
|
||||
};
|
||||
|
||||
__createBinding = Object.create ? (function(o, m, k, k2) {
|
||||
if (k2 === undefined) k2 = k;
|
||||
Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } });
|
||||
}) : (function(o, m, k, k2) {
|
||||
if (k2 === undefined) k2 = k;
|
||||
o[k2] = m[k];
|
||||
});
|
||||
|
||||
__values = function (o) {
|
||||
var s = typeof Symbol === "function" && Symbol.iterator, m = s && o[s], i = 0;
|
||||
if (m) return m.call(o);
|
||||
if (o && typeof o.length === "number") return {
|
||||
next: function () {
|
||||
if (o && i >= o.length) o = void 0;
|
||||
return { value: o && o[i++], done: !o };
|
||||
}
|
||||
};
|
||||
throw new TypeError(s ? "Object is not iterable." : "Symbol.iterator is not defined.");
|
||||
};
|
||||
|
||||
__read = function (o, n) {
|
||||
var m = typeof Symbol === "function" && o[Symbol.iterator];
|
||||
if (!m) return o;
|
||||
var i = m.call(o), r, ar = [], e;
|
||||
try {
|
||||
while ((n === void 0 || n-- > 0) && !(r = i.next()).done) ar.push(r.value);
|
||||
}
|
||||
catch (error) { e = { error: error }; }
|
||||
finally {
|
||||
try {
|
||||
if (r && !r.done && (m = i["return"])) m.call(i);
|
||||
}
|
||||
finally { if (e) throw e.error; }
|
||||
}
|
||||
return ar;
|
||||
};
|
||||
|
||||
/** @deprecated */
|
||||
__spread = function () {
|
||||
for (var ar = [], i = 0; i < arguments.length; i++)
|
||||
ar = ar.concat(__read(arguments[i]));
|
||||
return ar;
|
||||
};
|
||||
|
||||
/** @deprecated */
|
||||
__spreadArrays = function () {
|
||||
for (var s = 0, i = 0, il = arguments.length; i < il; i++) s += arguments[i].length;
|
||||
for (var r = Array(s), k = 0, i = 0; i < il; i++)
|
||||
for (var a = arguments[i], j = 0, jl = a.length; j < jl; j++, k++)
|
||||
r[k] = a[j];
|
||||
return r;
|
||||
};
|
||||
|
||||
__spreadArray = function (to, from, pack) {
|
||||
if (pack || arguments.length === 2) for (var i = 0, l = from.length, ar; i < l; i++) {
|
||||
if (ar || !(i in from)) {
|
||||
if (!ar) ar = Array.prototype.slice.call(from, 0, i);
|
||||
ar[i] = from[i];
|
||||
}
|
||||
}
|
||||
return to.concat(ar || Array.prototype.slice.call(from));
|
||||
};
|
||||
|
||||
__await = function (v) {
|
||||
return this instanceof __await ? (this.v = v, this) : new __await(v);
|
||||
};
|
||||
|
||||
__asyncGenerator = function (thisArg, _arguments, generator) {
|
||||
if (!Symbol.asyncIterator) throw new TypeError("Symbol.asyncIterator is not defined.");
|
||||
var g = generator.apply(thisArg, _arguments || []), i, q = [];
|
||||
return i = {}, verb("next"), verb("throw"), verb("return"), i[Symbol.asyncIterator] = function () { return this; }, i;
|
||||
function verb(n) { if (g[n]) i[n] = function (v) { return new Promise(function (a, b) { q.push([n, v, a, b]) > 1 || resume(n, v); }); }; }
|
||||
function resume(n, v) { try { step(g[n](v)); } catch (e) { settle(q[0][3], e); } }
|
||||
function step(r) { r.value instanceof __await ? Promise.resolve(r.value.v).then(fulfill, reject) : settle(q[0][2], r); }
|
||||
function fulfill(value) { resume("next", value); }
|
||||
function reject(value) { resume("throw", value); }
|
||||
function settle(f, v) { if (f(v), q.shift(), q.length) resume(q[0][0], q[0][1]); }
|
||||
};
|
||||
|
||||
__asyncDelegator = function (o) {
|
||||
var i, p;
|
||||
return i = {}, verb("next"), verb("throw", function (e) { throw e; }), verb("return"), i[Symbol.iterator] = function () { return this; }, i;
|
||||
function verb(n, f) { i[n] = o[n] ? function (v) { return (p = !p) ? { value: __await(o[n](v)), done: n === "return" } : f ? f(v) : v; } : f; }
|
||||
};
|
||||
|
||||
__asyncValues = function (o) {
|
||||
if (!Symbol.asyncIterator) throw new TypeError("Symbol.asyncIterator is not defined.");
|
||||
var m = o[Symbol.asyncIterator], i;
|
||||
return m ? m.call(o) : (o = typeof __values === "function" ? __values(o) : o[Symbol.iterator](), i = {}, verb("next"), verb("throw"), verb("return"), i[Symbol.asyncIterator] = function () { return this; }, i);
|
||||
function verb(n) { i[n] = o[n] && function (v) { return new Promise(function (resolve, reject) { v = o[n](v), settle(resolve, reject, v.done, v.value); }); }; }
|
||||
function settle(resolve, reject, d, v) { Promise.resolve(v).then(function(v) { resolve({ value: v, done: d }); }, reject); }
|
||||
};
|
||||
|
||||
__makeTemplateObject = function (cooked, raw) {
|
||||
if (Object.defineProperty) { Object.defineProperty(cooked, "raw", { value: raw }); } else { cooked.raw = raw; }
|
||||
return cooked;
|
||||
};
|
||||
|
||||
var __setModuleDefault = Object.create ? (function(o, v) {
|
||||
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
||||
}) : function(o, v) {
|
||||
o["default"] = v;
|
||||
};
|
||||
|
||||
__importStar = function (mod) {
|
||||
if (mod && mod.__esModule) return mod;
|
||||
var result = {};
|
||||
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
||||
__setModuleDefault(result, mod);
|
||||
return result;
|
||||
};
|
||||
|
||||
__importDefault = function (mod) {
|
||||
return (mod && mod.__esModule) ? mod : { "default": mod };
|
||||
};
|
||||
|
||||
__classPrivateFieldGet = function (receiver, state, kind, f) {
|
||||
if (kind === "a" && !f) throw new TypeError("Private accessor was defined without a getter");
|
||||
if (typeof state === "function" ? receiver !== state || !f : !state.has(receiver)) throw new TypeError("Cannot read private member from an object whose class did not declare it");
|
||||
return kind === "m" ? f : kind === "a" ? f.call(receiver) : f ? f.value : state.get(receiver);
|
||||
};
|
||||
|
||||
__classPrivateFieldSet = function (receiver, state, value, kind, f) {
|
||||
if (kind === "m") throw new TypeError("Private method is not writable");
|
||||
if (kind === "a" && !f) throw new TypeError("Private accessor was defined without a setter");
|
||||
if (typeof state === "function" ? receiver !== state || !f : !state.has(receiver)) throw new TypeError("Cannot write private member to an object whose class did not declare it");
|
||||
return (kind === "a" ? f.call(receiver, value) : f ? f.value = value : state.set(receiver, value)), value;
|
||||
};
|
||||
|
||||
exporter("__extends", __extends);
|
||||
exporter("__assign", __assign);
|
||||
exporter("__rest", __rest);
|
||||
exporter("__decorate", __decorate);
|
||||
exporter("__param", __param);
|
||||
exporter("__metadata", __metadata);
|
||||
exporter("__awaiter", __awaiter);
|
||||
exporter("__generator", __generator);
|
||||
exporter("__exportStar", __exportStar);
|
||||
exporter("__createBinding", __createBinding);
|
||||
exporter("__values", __values);
|
||||
exporter("__read", __read);
|
||||
exporter("__spread", __spread);
|
||||
exporter("__spreadArrays", __spreadArrays);
|
||||
exporter("__spreadArray", __spreadArray);
|
||||
exporter("__await", __await);
|
||||
exporter("__asyncGenerator", __asyncGenerator);
|
||||
exporter("__asyncDelegator", __asyncDelegator);
|
||||
exporter("__asyncValues", __asyncValues);
|
||||
exporter("__makeTemplateObject", __makeTemplateObject);
|
||||
exporter("__importStar", __importStar);
|
||||
exporter("__importDefault", __importDefault);
|
||||
exporter("__classPrivateFieldGet", __classPrivateFieldGet);
|
||||
exporter("__classPrivateFieldSet", __classPrivateFieldSet);
|
||||
});
|
||||
|
||||
|
||||
/***/ }),
|
||||
@ -42393,312 +42393,312 @@ exports.newPipeline = newPipeline;
|
||||
/***/ 679:
|
||||
/***/ ((module) => {
|
||||
|
||||
/*! *****************************************************************************
|
||||
Copyright (c) Microsoft Corporation.
|
||||
|
||||
Permission to use, copy, modify, and/or distribute this software for any
|
||||
purpose with or without fee is hereby granted.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
|
||||
REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
|
||||
AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
|
||||
INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
|
||||
LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
|
||||
OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
|
||||
PERFORMANCE OF THIS SOFTWARE.
|
||||
***************************************************************************** */
|
||||
/* global global, define, System, Reflect, Promise */
|
||||
var __extends;
|
||||
var __assign;
|
||||
var __rest;
|
||||
var __decorate;
|
||||
var __param;
|
||||
var __metadata;
|
||||
var __awaiter;
|
||||
var __generator;
|
||||
var __exportStar;
|
||||
var __values;
|
||||
var __read;
|
||||
var __spread;
|
||||
var __spreadArrays;
|
||||
var __spreadArray;
|
||||
var __await;
|
||||
var __asyncGenerator;
|
||||
var __asyncDelegator;
|
||||
var __asyncValues;
|
||||
var __makeTemplateObject;
|
||||
var __importStar;
|
||||
var __importDefault;
|
||||
var __classPrivateFieldGet;
|
||||
var __classPrivateFieldSet;
|
||||
var __createBinding;
|
||||
(function (factory) {
|
||||
var root = typeof global === "object" ? global : typeof self === "object" ? self : typeof this === "object" ? this : {};
|
||||
if (typeof define === "function" && define.amd) {
|
||||
define("tslib", ["exports"], function (exports) { factory(createExporter(root, createExporter(exports))); });
|
||||
}
|
||||
else if ( true && typeof module.exports === "object") {
|
||||
factory(createExporter(root, createExporter(module.exports)));
|
||||
}
|
||||
else {
|
||||
factory(createExporter(root));
|
||||
}
|
||||
function createExporter(exports, previous) {
|
||||
if (exports !== root) {
|
||||
if (typeof Object.create === "function") {
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
}
|
||||
else {
|
||||
exports.__esModule = true;
|
||||
}
|
||||
}
|
||||
return function (id, v) { return exports[id] = previous ? previous(id, v) : v; };
|
||||
}
|
||||
})
|
||||
(function (exporter) {
|
||||
var extendStatics = Object.setPrototypeOf ||
|
||||
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
||||
function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };
|
||||
|
||||
__extends = function (d, b) {
|
||||
if (typeof b !== "function" && b !== null)
|
||||
throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
|
||||
extendStatics(d, b);
|
||||
function __() { this.constructor = d; }
|
||||
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
||||
};
|
||||
|
||||
__assign = Object.assign || function (t) {
|
||||
for (var s, i = 1, n = arguments.length; i < n; i++) {
|
||||
s = arguments[i];
|
||||
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p)) t[p] = s[p];
|
||||
}
|
||||
return t;
|
||||
};
|
||||
|
||||
__rest = function (s, e) {
|
||||
var t = {};
|
||||
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
|
||||
t[p] = s[p];
|
||||
if (s != null && typeof Object.getOwnPropertySymbols === "function")
|
||||
for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
|
||||
if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
|
||||
t[p[i]] = s[p[i]];
|
||||
}
|
||||
return t;
|
||||
};
|
||||
|
||||
__decorate = function (decorators, target, key, desc) {
|
||||
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
||||
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
||||
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
||||
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
||||
};
|
||||
|
||||
__param = function (paramIndex, decorator) {
|
||||
return function (target, key) { decorator(target, key, paramIndex); }
|
||||
};
|
||||
|
||||
__metadata = function (metadataKey, metadataValue) {
|
||||
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(metadataKey, metadataValue);
|
||||
};
|
||||
|
||||
__awaiter = function (thisArg, _arguments, P, generator) {
|
||||
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
||||
return new (P || (P = Promise))(function (resolve, reject) {
|
||||
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
|
||||
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
|
||||
function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
|
||||
step((generator = generator.apply(thisArg, _arguments || [])).next());
|
||||
});
|
||||
};
|
||||
|
||||
__generator = function (thisArg, body) {
|
||||
var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;
|
||||
return g = { next: verb(0), "throw": verb(1), "return": verb(2) }, typeof Symbol === "function" && (g[Symbol.iterator] = function() { return this; }), g;
|
||||
function verb(n) { return function (v) { return step([n, v]); }; }
|
||||
function step(op) {
|
||||
if (f) throw new TypeError("Generator is already executing.");
|
||||
while (_) try {
|
||||
if (f = 1, y && (t = op[0] & 2 ? y["return"] : op[0] ? y["throw"] || ((t = y["return"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t;
|
||||
if (y = 0, t) op = [op[0] & 2, t.value];
|
||||
switch (op[0]) {
|
||||
case 0: case 1: t = op; break;
|
||||
case 4: _.label++; return { value: op[1], done: false };
|
||||
case 5: _.label++; y = op[1]; op = [0]; continue;
|
||||
case 7: op = _.ops.pop(); _.trys.pop(); continue;
|
||||
default:
|
||||
if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }
|
||||
if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }
|
||||
if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }
|
||||
if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }
|
||||
if (t[2]) _.ops.pop();
|
||||
_.trys.pop(); continue;
|
||||
}
|
||||
op = body.call(thisArg, _);
|
||||
} catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }
|
||||
if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };
|
||||
}
|
||||
};
|
||||
|
||||
__exportStar = function(m, o) {
|
||||
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(o, p)) __createBinding(o, m, p);
|
||||
};
|
||||
|
||||
__createBinding = Object.create ? (function(o, m, k, k2) {
|
||||
if (k2 === undefined) k2 = k;
|
||||
Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } });
|
||||
}) : (function(o, m, k, k2) {
|
||||
if (k2 === undefined) k2 = k;
|
||||
o[k2] = m[k];
|
||||
});
|
||||
|
||||
__values = function (o) {
|
||||
var s = typeof Symbol === "function" && Symbol.iterator, m = s && o[s], i = 0;
|
||||
if (m) return m.call(o);
|
||||
if (o && typeof o.length === "number") return {
|
||||
next: function () {
|
||||
if (o && i >= o.length) o = void 0;
|
||||
return { value: o && o[i++], done: !o };
|
||||
}
|
||||
};
|
||||
throw new TypeError(s ? "Object is not iterable." : "Symbol.iterator is not defined.");
|
||||
};
|
||||
|
||||
__read = function (o, n) {
|
||||
var m = typeof Symbol === "function" && o[Symbol.iterator];
|
||||
if (!m) return o;
|
||||
var i = m.call(o), r, ar = [], e;
|
||||
try {
|
||||
while ((n === void 0 || n-- > 0) && !(r = i.next()).done) ar.push(r.value);
|
||||
}
|
||||
catch (error) { e = { error: error }; }
|
||||
finally {
|
||||
try {
|
||||
if (r && !r.done && (m = i["return"])) m.call(i);
|
||||
}
|
||||
finally { if (e) throw e.error; }
|
||||
}
|
||||
return ar;
|
||||
};
|
||||
|
||||
/** @deprecated */
|
||||
__spread = function () {
|
||||
for (var ar = [], i = 0; i < arguments.length; i++)
|
||||
ar = ar.concat(__read(arguments[i]));
|
||||
return ar;
|
||||
};
|
||||
|
||||
/** @deprecated */
|
||||
__spreadArrays = function () {
|
||||
for (var s = 0, i = 0, il = arguments.length; i < il; i++) s += arguments[i].length;
|
||||
for (var r = Array(s), k = 0, i = 0; i < il; i++)
|
||||
for (var a = arguments[i], j = 0, jl = a.length; j < jl; j++, k++)
|
||||
r[k] = a[j];
|
||||
return r;
|
||||
};
|
||||
|
||||
__spreadArray = function (to, from, pack) {
|
||||
if (pack || arguments.length === 2) for (var i = 0, l = from.length, ar; i < l; i++) {
|
||||
if (ar || !(i in from)) {
|
||||
if (!ar) ar = Array.prototype.slice.call(from, 0, i);
|
||||
ar[i] = from[i];
|
||||
}
|
||||
}
|
||||
return to.concat(ar || Array.prototype.slice.call(from));
|
||||
};
|
||||
|
||||
__await = function (v) {
|
||||
return this instanceof __await ? (this.v = v, this) : new __await(v);
|
||||
};
|
||||
|
||||
__asyncGenerator = function (thisArg, _arguments, generator) {
|
||||
if (!Symbol.asyncIterator) throw new TypeError("Symbol.asyncIterator is not defined.");
|
||||
var g = generator.apply(thisArg, _arguments || []), i, q = [];
|
||||
return i = {}, verb("next"), verb("throw"), verb("return"), i[Symbol.asyncIterator] = function () { return this; }, i;
|
||||
function verb(n) { if (g[n]) i[n] = function (v) { return new Promise(function (a, b) { q.push([n, v, a, b]) > 1 || resume(n, v); }); }; }
|
||||
function resume(n, v) { try { step(g[n](v)); } catch (e) { settle(q[0][3], e); } }
|
||||
function step(r) { r.value instanceof __await ? Promise.resolve(r.value.v).then(fulfill, reject) : settle(q[0][2], r); }
|
||||
function fulfill(value) { resume("next", value); }
|
||||
function reject(value) { resume("throw", value); }
|
||||
function settle(f, v) { if (f(v), q.shift(), q.length) resume(q[0][0], q[0][1]); }
|
||||
};
|
||||
|
||||
__asyncDelegator = function (o) {
|
||||
var i, p;
|
||||
return i = {}, verb("next"), verb("throw", function (e) { throw e; }), verb("return"), i[Symbol.iterator] = function () { return this; }, i;
|
||||
function verb(n, f) { i[n] = o[n] ? function (v) { return (p = !p) ? { value: __await(o[n](v)), done: n === "return" } : f ? f(v) : v; } : f; }
|
||||
};
|
||||
|
||||
__asyncValues = function (o) {
|
||||
if (!Symbol.asyncIterator) throw new TypeError("Symbol.asyncIterator is not defined.");
|
||||
var m = o[Symbol.asyncIterator], i;
|
||||
return m ? m.call(o) : (o = typeof __values === "function" ? __values(o) : o[Symbol.iterator](), i = {}, verb("next"), verb("throw"), verb("return"), i[Symbol.asyncIterator] = function () { return this; }, i);
|
||||
function verb(n) { i[n] = o[n] && function (v) { return new Promise(function (resolve, reject) { v = o[n](v), settle(resolve, reject, v.done, v.value); }); }; }
|
||||
function settle(resolve, reject, d, v) { Promise.resolve(v).then(function(v) { resolve({ value: v, done: d }); }, reject); }
|
||||
};
|
||||
|
||||
__makeTemplateObject = function (cooked, raw) {
|
||||
if (Object.defineProperty) { Object.defineProperty(cooked, "raw", { value: raw }); } else { cooked.raw = raw; }
|
||||
return cooked;
|
||||
};
|
||||
|
||||
var __setModuleDefault = Object.create ? (function(o, v) {
|
||||
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
||||
}) : function(o, v) {
|
||||
o["default"] = v;
|
||||
};
|
||||
|
||||
__importStar = function (mod) {
|
||||
if (mod && mod.__esModule) return mod;
|
||||
var result = {};
|
||||
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
||||
__setModuleDefault(result, mod);
|
||||
return result;
|
||||
};
|
||||
|
||||
__importDefault = function (mod) {
|
||||
return (mod && mod.__esModule) ? mod : { "default": mod };
|
||||
};
|
||||
|
||||
__classPrivateFieldGet = function (receiver, state, kind, f) {
|
||||
if (kind === "a" && !f) throw new TypeError("Private accessor was defined without a getter");
|
||||
if (typeof state === "function" ? receiver !== state || !f : !state.has(receiver)) throw new TypeError("Cannot read private member from an object whose class did not declare it");
|
||||
return kind === "m" ? f : kind === "a" ? f.call(receiver) : f ? f.value : state.get(receiver);
|
||||
};
|
||||
|
||||
__classPrivateFieldSet = function (receiver, state, value, kind, f) {
|
||||
if (kind === "m") throw new TypeError("Private method is not writable");
|
||||
if (kind === "a" && !f) throw new TypeError("Private accessor was defined without a setter");
|
||||
if (typeof state === "function" ? receiver !== state || !f : !state.has(receiver)) throw new TypeError("Cannot write private member to an object whose class did not declare it");
|
||||
return (kind === "a" ? f.call(receiver, value) : f ? f.value = value : state.set(receiver, value)), value;
|
||||
};
|
||||
|
||||
exporter("__extends", __extends);
|
||||
exporter("__assign", __assign);
|
||||
exporter("__rest", __rest);
|
||||
exporter("__decorate", __decorate);
|
||||
exporter("__param", __param);
|
||||
exporter("__metadata", __metadata);
|
||||
exporter("__awaiter", __awaiter);
|
||||
exporter("__generator", __generator);
|
||||
exporter("__exportStar", __exportStar);
|
||||
exporter("__createBinding", __createBinding);
|
||||
exporter("__values", __values);
|
||||
exporter("__read", __read);
|
||||
exporter("__spread", __spread);
|
||||
exporter("__spreadArrays", __spreadArrays);
|
||||
exporter("__spreadArray", __spreadArray);
|
||||
exporter("__await", __await);
|
||||
exporter("__asyncGenerator", __asyncGenerator);
|
||||
exporter("__asyncDelegator", __asyncDelegator);
|
||||
exporter("__asyncValues", __asyncValues);
|
||||
exporter("__makeTemplateObject", __makeTemplateObject);
|
||||
exporter("__importStar", __importStar);
|
||||
exporter("__importDefault", __importDefault);
|
||||
exporter("__classPrivateFieldGet", __classPrivateFieldGet);
|
||||
exporter("__classPrivateFieldSet", __classPrivateFieldSet);
|
||||
});
|
||||
/*! *****************************************************************************
|
||||
Copyright (c) Microsoft Corporation.
|
||||
|
||||
Permission to use, copy, modify, and/or distribute this software for any
|
||||
purpose with or without fee is hereby granted.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
|
||||
REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
|
||||
AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
|
||||
INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
|
||||
LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
|
||||
OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
|
||||
PERFORMANCE OF THIS SOFTWARE.
|
||||
***************************************************************************** */
|
||||
/* global global, define, System, Reflect, Promise */
|
||||
var __extends;
|
||||
var __assign;
|
||||
var __rest;
|
||||
var __decorate;
|
||||
var __param;
|
||||
var __metadata;
|
||||
var __awaiter;
|
||||
var __generator;
|
||||
var __exportStar;
|
||||
var __values;
|
||||
var __read;
|
||||
var __spread;
|
||||
var __spreadArrays;
|
||||
var __spreadArray;
|
||||
var __await;
|
||||
var __asyncGenerator;
|
||||
var __asyncDelegator;
|
||||
var __asyncValues;
|
||||
var __makeTemplateObject;
|
||||
var __importStar;
|
||||
var __importDefault;
|
||||
var __classPrivateFieldGet;
|
||||
var __classPrivateFieldSet;
|
||||
var __createBinding;
|
||||
(function (factory) {
|
||||
var root = typeof global === "object" ? global : typeof self === "object" ? self : typeof this === "object" ? this : {};
|
||||
if (typeof define === "function" && define.amd) {
|
||||
define("tslib", ["exports"], function (exports) { factory(createExporter(root, createExporter(exports))); });
|
||||
}
|
||||
else if ( true && typeof module.exports === "object") {
|
||||
factory(createExporter(root, createExporter(module.exports)));
|
||||
}
|
||||
else {
|
||||
factory(createExporter(root));
|
||||
}
|
||||
function createExporter(exports, previous) {
|
||||
if (exports !== root) {
|
||||
if (typeof Object.create === "function") {
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
}
|
||||
else {
|
||||
exports.__esModule = true;
|
||||
}
|
||||
}
|
||||
return function (id, v) { return exports[id] = previous ? previous(id, v) : v; };
|
||||
}
|
||||
})
|
||||
(function (exporter) {
|
||||
var extendStatics = Object.setPrototypeOf ||
|
||||
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
||||
function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };
|
||||
|
||||
__extends = function (d, b) {
|
||||
if (typeof b !== "function" && b !== null)
|
||||
throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
|
||||
extendStatics(d, b);
|
||||
function __() { this.constructor = d; }
|
||||
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
||||
};
|
||||
|
||||
__assign = Object.assign || function (t) {
|
||||
for (var s, i = 1, n = arguments.length; i < n; i++) {
|
||||
s = arguments[i];
|
||||
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p)) t[p] = s[p];
|
||||
}
|
||||
return t;
|
||||
};
|
||||
|
||||
__rest = function (s, e) {
|
||||
var t = {};
|
||||
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
|
||||
t[p] = s[p];
|
||||
if (s != null && typeof Object.getOwnPropertySymbols === "function")
|
||||
for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
|
||||
if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
|
||||
t[p[i]] = s[p[i]];
|
||||
}
|
||||
return t;
|
||||
};
|
||||
|
||||
__decorate = function (decorators, target, key, desc) {
|
||||
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
||||
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
||||
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
||||
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
||||
};
|
||||
|
||||
__param = function (paramIndex, decorator) {
|
||||
return function (target, key) { decorator(target, key, paramIndex); }
|
||||
};
|
||||
|
||||
__metadata = function (metadataKey, metadataValue) {
|
||||
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(metadataKey, metadataValue);
|
||||
};
|
||||
|
||||
__awaiter = function (thisArg, _arguments, P, generator) {
|
||||
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
||||
return new (P || (P = Promise))(function (resolve, reject) {
|
||||
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
|
||||
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
|
||||
function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
|
||||
step((generator = generator.apply(thisArg, _arguments || [])).next());
|
||||
});
|
||||
};
|
||||
|
||||
__generator = function (thisArg, body) {
|
||||
var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;
|
||||
return g = { next: verb(0), "throw": verb(1), "return": verb(2) }, typeof Symbol === "function" && (g[Symbol.iterator] = function() { return this; }), g;
|
||||
function verb(n) { return function (v) { return step([n, v]); }; }
|
||||
function step(op) {
|
||||
if (f) throw new TypeError("Generator is already executing.");
|
||||
while (_) try {
|
||||
if (f = 1, y && (t = op[0] & 2 ? y["return"] : op[0] ? y["throw"] || ((t = y["return"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t;
|
||||
if (y = 0, t) op = [op[0] & 2, t.value];
|
||||
switch (op[0]) {
|
||||
case 0: case 1: t = op; break;
|
||||
case 4: _.label++; return { value: op[1], done: false };
|
||||
case 5: _.label++; y = op[1]; op = [0]; continue;
|
||||
case 7: op = _.ops.pop(); _.trys.pop(); continue;
|
||||
default:
|
||||
if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }
|
||||
if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }
|
||||
if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }
|
||||
if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }
|
||||
if (t[2]) _.ops.pop();
|
||||
_.trys.pop(); continue;
|
||||
}
|
||||
op = body.call(thisArg, _);
|
||||
} catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }
|
||||
if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };
|
||||
}
|
||||
};
|
||||
|
||||
__exportStar = function(m, o) {
|
||||
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(o, p)) __createBinding(o, m, p);
|
||||
};
|
||||
|
||||
__createBinding = Object.create ? (function(o, m, k, k2) {
|
||||
if (k2 === undefined) k2 = k;
|
||||
Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } });
|
||||
}) : (function(o, m, k, k2) {
|
||||
if (k2 === undefined) k2 = k;
|
||||
o[k2] = m[k];
|
||||
});
|
||||
|
||||
__values = function (o) {
|
||||
var s = typeof Symbol === "function" && Symbol.iterator, m = s && o[s], i = 0;
|
||||
if (m) return m.call(o);
|
||||
if (o && typeof o.length === "number") return {
|
||||
next: function () {
|
||||
if (o && i >= o.length) o = void 0;
|
||||
return { value: o && o[i++], done: !o };
|
||||
}
|
||||
};
|
||||
throw new TypeError(s ? "Object is not iterable." : "Symbol.iterator is not defined.");
|
||||
};
|
||||
|
||||
__read = function (o, n) {
|
||||
var m = typeof Symbol === "function" && o[Symbol.iterator];
|
||||
if (!m) return o;
|
||||
var i = m.call(o), r, ar = [], e;
|
||||
try {
|
||||
while ((n === void 0 || n-- > 0) && !(r = i.next()).done) ar.push(r.value);
|
||||
}
|
||||
catch (error) { e = { error: error }; }
|
||||
finally {
|
||||
try {
|
||||
if (r && !r.done && (m = i["return"])) m.call(i);
|
||||
}
|
||||
finally { if (e) throw e.error; }
|
||||
}
|
||||
return ar;
|
||||
};
|
||||
|
||||
/** @deprecated */
|
||||
__spread = function () {
|
||||
for (var ar = [], i = 0; i < arguments.length; i++)
|
||||
ar = ar.concat(__read(arguments[i]));
|
||||
return ar;
|
||||
};
|
||||
|
||||
/** @deprecated */
|
||||
__spreadArrays = function () {
|
||||
for (var s = 0, i = 0, il = arguments.length; i < il; i++) s += arguments[i].length;
|
||||
for (var r = Array(s), k = 0, i = 0; i < il; i++)
|
||||
for (var a = arguments[i], j = 0, jl = a.length; j < jl; j++, k++)
|
||||
r[k] = a[j];
|
||||
return r;
|
||||
};
|
||||
|
||||
__spreadArray = function (to, from, pack) {
|
||||
if (pack || arguments.length === 2) for (var i = 0, l = from.length, ar; i < l; i++) {
|
||||
if (ar || !(i in from)) {
|
||||
if (!ar) ar = Array.prototype.slice.call(from, 0, i);
|
||||
ar[i] = from[i];
|
||||
}
|
||||
}
|
||||
return to.concat(ar || Array.prototype.slice.call(from));
|
||||
};
|
||||
|
||||
__await = function (v) {
|
||||
return this instanceof __await ? (this.v = v, this) : new __await(v);
|
||||
};
|
||||
|
||||
__asyncGenerator = function (thisArg, _arguments, generator) {
|
||||
if (!Symbol.asyncIterator) throw new TypeError("Symbol.asyncIterator is not defined.");
|
||||
var g = generator.apply(thisArg, _arguments || []), i, q = [];
|
||||
return i = {}, verb("next"), verb("throw"), verb("return"), i[Symbol.asyncIterator] = function () { return this; }, i;
|
||||
function verb(n) { if (g[n]) i[n] = function (v) { return new Promise(function (a, b) { q.push([n, v, a, b]) > 1 || resume(n, v); }); }; }
|
||||
function resume(n, v) { try { step(g[n](v)); } catch (e) { settle(q[0][3], e); } }
|
||||
function step(r) { r.value instanceof __await ? Promise.resolve(r.value.v).then(fulfill, reject) : settle(q[0][2], r); }
|
||||
function fulfill(value) { resume("next", value); }
|
||||
function reject(value) { resume("throw", value); }
|
||||
function settle(f, v) { if (f(v), q.shift(), q.length) resume(q[0][0], q[0][1]); }
|
||||
};
|
||||
|
||||
__asyncDelegator = function (o) {
|
||||
var i, p;
|
||||
return i = {}, verb("next"), verb("throw", function (e) { throw e; }), verb("return"), i[Symbol.iterator] = function () { return this; }, i;
|
||||
function verb(n, f) { i[n] = o[n] ? function (v) { return (p = !p) ? { value: __await(o[n](v)), done: n === "return" } : f ? f(v) : v; } : f; }
|
||||
};
|
||||
|
||||
__asyncValues = function (o) {
|
||||
if (!Symbol.asyncIterator) throw new TypeError("Symbol.asyncIterator is not defined.");
|
||||
var m = o[Symbol.asyncIterator], i;
|
||||
return m ? m.call(o) : (o = typeof __values === "function" ? __values(o) : o[Symbol.iterator](), i = {}, verb("next"), verb("throw"), verb("return"), i[Symbol.asyncIterator] = function () { return this; }, i);
|
||||
function verb(n) { i[n] = o[n] && function (v) { return new Promise(function (resolve, reject) { v = o[n](v), settle(resolve, reject, v.done, v.value); }); }; }
|
||||
function settle(resolve, reject, d, v) { Promise.resolve(v).then(function(v) { resolve({ value: v, done: d }); }, reject); }
|
||||
};
|
||||
|
||||
__makeTemplateObject = function (cooked, raw) {
|
||||
if (Object.defineProperty) { Object.defineProperty(cooked, "raw", { value: raw }); } else { cooked.raw = raw; }
|
||||
return cooked;
|
||||
};
|
||||
|
||||
var __setModuleDefault = Object.create ? (function(o, v) {
|
||||
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
||||
}) : function(o, v) {
|
||||
o["default"] = v;
|
||||
};
|
||||
|
||||
__importStar = function (mod) {
|
||||
if (mod && mod.__esModule) return mod;
|
||||
var result = {};
|
||||
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
||||
__setModuleDefault(result, mod);
|
||||
return result;
|
||||
};
|
||||
|
||||
__importDefault = function (mod) {
|
||||
return (mod && mod.__esModule) ? mod : { "default": mod };
|
||||
};
|
||||
|
||||
__classPrivateFieldGet = function (receiver, state, kind, f) {
|
||||
if (kind === "a" && !f) throw new TypeError("Private accessor was defined without a getter");
|
||||
if (typeof state === "function" ? receiver !== state || !f : !state.has(receiver)) throw new TypeError("Cannot read private member from an object whose class did not declare it");
|
||||
return kind === "m" ? f : kind === "a" ? f.call(receiver) : f ? f.value : state.get(receiver);
|
||||
};
|
||||
|
||||
__classPrivateFieldSet = function (receiver, state, value, kind, f) {
|
||||
if (kind === "m") throw new TypeError("Private method is not writable");
|
||||
if (kind === "a" && !f) throw new TypeError("Private accessor was defined without a setter");
|
||||
if (typeof state === "function" ? receiver !== state || !f : !state.has(receiver)) throw new TypeError("Cannot write private member to an object whose class did not declare it");
|
||||
return (kind === "a" ? f.call(receiver, value) : f ? f.value = value : state.set(receiver, value)), value;
|
||||
};
|
||||
|
||||
exporter("__extends", __extends);
|
||||
exporter("__assign", __assign);
|
||||
exporter("__rest", __rest);
|
||||
exporter("__decorate", __decorate);
|
||||
exporter("__param", __param);
|
||||
exporter("__metadata", __metadata);
|
||||
exporter("__awaiter", __awaiter);
|
||||
exporter("__generator", __generator);
|
||||
exporter("__exportStar", __exportStar);
|
||||
exporter("__createBinding", __createBinding);
|
||||
exporter("__values", __values);
|
||||
exporter("__read", __read);
|
||||
exporter("__spread", __spread);
|
||||
exporter("__spreadArrays", __spreadArrays);
|
||||
exporter("__spreadArray", __spreadArray);
|
||||
exporter("__await", __await);
|
||||
exporter("__asyncGenerator", __asyncGenerator);
|
||||
exporter("__asyncDelegator", __asyncDelegator);
|
||||
exporter("__asyncValues", __asyncValues);
|
||||
exporter("__makeTemplateObject", __makeTemplateObject);
|
||||
exporter("__importStar", __importStar);
|
||||
exporter("__importDefault", __importDefault);
|
||||
exporter("__classPrivateFieldGet", __classPrivateFieldGet);
|
||||
exporter("__classPrivateFieldSet", __classPrivateFieldSet);
|
||||
});
|
||||
|
||||
|
||||
/***/ }),
|
||||
@ -49981,1303 +49981,1303 @@ exports.parseURL = __nccwpck_require__(33).parseURL;
|
||||
/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => {
|
||||
|
||||
"use strict";
|
||||
|
||||
const punycode = __nccwpck_require__(5477);
|
||||
const tr46 = __nccwpck_require__(2299);
|
||||
|
||||
const specialSchemes = {
|
||||
ftp: 21,
|
||||
file: null,
|
||||
gopher: 70,
|
||||
http: 80,
|
||||
https: 443,
|
||||
ws: 80,
|
||||
wss: 443
|
||||
};
|
||||
|
||||
const failure = Symbol("failure");
|
||||
|
||||
function countSymbols(str) {
|
||||
return punycode.ucs2.decode(str).length;
|
||||
}
|
||||
|
||||
function at(input, idx) {
|
||||
const c = input[idx];
|
||||
return isNaN(c) ? undefined : String.fromCodePoint(c);
|
||||
}
|
||||
|
||||
function isASCIIDigit(c) {
|
||||
return c >= 0x30 && c <= 0x39;
|
||||
}
|
||||
|
||||
function isASCIIAlpha(c) {
|
||||
return (c >= 0x41 && c <= 0x5A) || (c >= 0x61 && c <= 0x7A);
|
||||
}
|
||||
|
||||
function isASCIIAlphanumeric(c) {
|
||||
return isASCIIAlpha(c) || isASCIIDigit(c);
|
||||
}
|
||||
|
||||
function isASCIIHex(c) {
|
||||
return isASCIIDigit(c) || (c >= 0x41 && c <= 0x46) || (c >= 0x61 && c <= 0x66);
|
||||
}
|
||||
|
||||
function isSingleDot(buffer) {
|
||||
return buffer === "." || buffer.toLowerCase() === "%2e";
|
||||
}
|
||||
|
||||
function isDoubleDot(buffer) {
|
||||
buffer = buffer.toLowerCase();
|
||||
return buffer === ".." || buffer === "%2e." || buffer === ".%2e" || buffer === "%2e%2e";
|
||||
}
|
||||
|
||||
function isWindowsDriveLetterCodePoints(cp1, cp2) {
|
||||
return isASCIIAlpha(cp1) && (cp2 === 58 || cp2 === 124);
|
||||
}
|
||||
|
||||
function isWindowsDriveLetterString(string) {
|
||||
return string.length === 2 && isASCIIAlpha(string.codePointAt(0)) && (string[1] === ":" || string[1] === "|");
|
||||
}
|
||||
|
||||
function isNormalizedWindowsDriveLetterString(string) {
|
||||
return string.length === 2 && isASCIIAlpha(string.codePointAt(0)) && string[1] === ":";
|
||||
}
|
||||
|
||||
function containsForbiddenHostCodePoint(string) {
|
||||
return string.search(/\u0000|\u0009|\u000A|\u000D|\u0020|#|%|\/|:|\?|@|\[|\\|\]/) !== -1;
|
||||
}
|
||||
|
||||
function containsForbiddenHostCodePointExcludingPercent(string) {
|
||||
return string.search(/\u0000|\u0009|\u000A|\u000D|\u0020|#|\/|:|\?|@|\[|\\|\]/) !== -1;
|
||||
}
|
||||
|
||||
function isSpecialScheme(scheme) {
|
||||
return specialSchemes[scheme] !== undefined;
|
||||
}
|
||||
|
||||
function isSpecial(url) {
|
||||
return isSpecialScheme(url.scheme);
|
||||
}
|
||||
|
||||
function defaultPort(scheme) {
|
||||
return specialSchemes[scheme];
|
||||
}
|
||||
|
||||
function percentEncode(c) {
|
||||
let hex = c.toString(16).toUpperCase();
|
||||
if (hex.length === 1) {
|
||||
hex = "0" + hex;
|
||||
}
|
||||
|
||||
return "%" + hex;
|
||||
}
|
||||
|
||||
function utf8PercentEncode(c) {
|
||||
const buf = new Buffer(c);
|
||||
|
||||
let str = "";
|
||||
|
||||
for (let i = 0; i < buf.length; ++i) {
|
||||
str += percentEncode(buf[i]);
|
||||
}
|
||||
|
||||
return str;
|
||||
}
|
||||
|
||||
function utf8PercentDecode(str) {
|
||||
const input = new Buffer(str);
|
||||
const output = [];
|
||||
for (let i = 0; i < input.length; ++i) {
|
||||
if (input[i] !== 37) {
|
||||
output.push(input[i]);
|
||||
} else if (input[i] === 37 && isASCIIHex(input[i + 1]) && isASCIIHex(input[i + 2])) {
|
||||
output.push(parseInt(input.slice(i + 1, i + 3).toString(), 16));
|
||||
i += 2;
|
||||
} else {
|
||||
output.push(input[i]);
|
||||
}
|
||||
}
|
||||
return new Buffer(output).toString();
|
||||
}
|
||||
|
||||
function isC0ControlPercentEncode(c) {
|
||||
return c <= 0x1F || c > 0x7E;
|
||||
}
|
||||
|
||||
const extraPathPercentEncodeSet = new Set([32, 34, 35, 60, 62, 63, 96, 123, 125]);
|
||||
function isPathPercentEncode(c) {
|
||||
return isC0ControlPercentEncode(c) || extraPathPercentEncodeSet.has(c);
|
||||
}
|
||||
|
||||
const extraUserinfoPercentEncodeSet =
|
||||
new Set([47, 58, 59, 61, 64, 91, 92, 93, 94, 124]);
|
||||
function isUserinfoPercentEncode(c) {
|
||||
return isPathPercentEncode(c) || extraUserinfoPercentEncodeSet.has(c);
|
||||
}
|
||||
|
||||
function percentEncodeChar(c, encodeSetPredicate) {
|
||||
const cStr = String.fromCodePoint(c);
|
||||
|
||||
if (encodeSetPredicate(c)) {
|
||||
return utf8PercentEncode(cStr);
|
||||
}
|
||||
|
||||
return cStr;
|
||||
}
|
||||
|
||||
function parseIPv4Number(input) {
|
||||
let R = 10;
|
||||
|
||||
if (input.length >= 2 && input.charAt(0) === "0" && input.charAt(1).toLowerCase() === "x") {
|
||||
input = input.substring(2);
|
||||
R = 16;
|
||||
} else if (input.length >= 2 && input.charAt(0) === "0") {
|
||||
input = input.substring(1);
|
||||
R = 8;
|
||||
}
|
||||
|
||||
if (input === "") {
|
||||
return 0;
|
||||
}
|
||||
|
||||
const regex = R === 10 ? /[^0-9]/ : (R === 16 ? /[^0-9A-Fa-f]/ : /[^0-7]/);
|
||||
if (regex.test(input)) {
|
||||
return failure;
|
||||
}
|
||||
|
||||
return parseInt(input, R);
|
||||
}
|
||||
|
||||
function parseIPv4(input) {
|
||||
const parts = input.split(".");
|
||||
if (parts[parts.length - 1] === "") {
|
||||
if (parts.length > 1) {
|
||||
parts.pop();
|
||||
}
|
||||
}
|
||||
|
||||
if (parts.length > 4) {
|
||||
return input;
|
||||
}
|
||||
|
||||
const numbers = [];
|
||||
for (const part of parts) {
|
||||
if (part === "") {
|
||||
return input;
|
||||
}
|
||||
const n = parseIPv4Number(part);
|
||||
if (n === failure) {
|
||||
return input;
|
||||
}
|
||||
|
||||
numbers.push(n);
|
||||
}
|
||||
|
||||
for (let i = 0; i < numbers.length - 1; ++i) {
|
||||
if (numbers[i] > 255) {
|
||||
return failure;
|
||||
}
|
||||
}
|
||||
if (numbers[numbers.length - 1] >= Math.pow(256, 5 - numbers.length)) {
|
||||
return failure;
|
||||
}
|
||||
|
||||
let ipv4 = numbers.pop();
|
||||
let counter = 0;
|
||||
|
||||
for (const n of numbers) {
|
||||
ipv4 += n * Math.pow(256, 3 - counter);
|
||||
++counter;
|
||||
}
|
||||
|
||||
return ipv4;
|
||||
}
|
||||
|
||||
function serializeIPv4(address) {
|
||||
let output = "";
|
||||
let n = address;
|
||||
|
||||
for (let i = 1; i <= 4; ++i) {
|
||||
output = String(n % 256) + output;
|
||||
if (i !== 4) {
|
||||
output = "." + output;
|
||||
}
|
||||
n = Math.floor(n / 256);
|
||||
}
|
||||
|
||||
return output;
|
||||
}
|
||||
|
||||
function parseIPv6(input) {
|
||||
const address = [0, 0, 0, 0, 0, 0, 0, 0];
|
||||
let pieceIndex = 0;
|
||||
let compress = null;
|
||||
let pointer = 0;
|
||||
|
||||
input = punycode.ucs2.decode(input);
|
||||
|
||||
if (input[pointer] === 58) {
|
||||
if (input[pointer + 1] !== 58) {
|
||||
return failure;
|
||||
}
|
||||
|
||||
pointer += 2;
|
||||
++pieceIndex;
|
||||
compress = pieceIndex;
|
||||
}
|
||||
|
||||
while (pointer < input.length) {
|
||||
if (pieceIndex === 8) {
|
||||
return failure;
|
||||
}
|
||||
|
||||
if (input[pointer] === 58) {
|
||||
if (compress !== null) {
|
||||
return failure;
|
||||
}
|
||||
++pointer;
|
||||
++pieceIndex;
|
||||
compress = pieceIndex;
|
||||
continue;
|
||||
}
|
||||
|
||||
let value = 0;
|
||||
let length = 0;
|
||||
|
||||
while (length < 4 && isASCIIHex(input[pointer])) {
|
||||
value = value * 0x10 + parseInt(at(input, pointer), 16);
|
||||
++pointer;
|
||||
++length;
|
||||
}
|
||||
|
||||
if (input[pointer] === 46) {
|
||||
if (length === 0) {
|
||||
return failure;
|
||||
}
|
||||
|
||||
pointer -= length;
|
||||
|
||||
if (pieceIndex > 6) {
|
||||
return failure;
|
||||
}
|
||||
|
||||
let numbersSeen = 0;
|
||||
|
||||
while (input[pointer] !== undefined) {
|
||||
let ipv4Piece = null;
|
||||
|
||||
if (numbersSeen > 0) {
|
||||
if (input[pointer] === 46 && numbersSeen < 4) {
|
||||
++pointer;
|
||||
} else {
|
||||
return failure;
|
||||
}
|
||||
}
|
||||
|
||||
if (!isASCIIDigit(input[pointer])) {
|
||||
return failure;
|
||||
}
|
||||
|
||||
while (isASCIIDigit(input[pointer])) {
|
||||
const number = parseInt(at(input, pointer));
|
||||
if (ipv4Piece === null) {
|
||||
ipv4Piece = number;
|
||||
} else if (ipv4Piece === 0) {
|
||||
return failure;
|
||||
} else {
|
||||
ipv4Piece = ipv4Piece * 10 + number;
|
||||
}
|
||||
if (ipv4Piece > 255) {
|
||||
return failure;
|
||||
}
|
||||
++pointer;
|
||||
}
|
||||
|
||||
address[pieceIndex] = address[pieceIndex] * 0x100 + ipv4Piece;
|
||||
|
||||
++numbersSeen;
|
||||
|
||||
if (numbersSeen === 2 || numbersSeen === 4) {
|
||||
++pieceIndex;
|
||||
}
|
||||
}
|
||||
|
||||
if (numbersSeen !== 4) {
|
||||
return failure;
|
||||
}
|
||||
|
||||
break;
|
||||
} else if (input[pointer] === 58) {
|
||||
++pointer;
|
||||
if (input[pointer] === undefined) {
|
||||
return failure;
|
||||
}
|
||||
} else if (input[pointer] !== undefined) {
|
||||
return failure;
|
||||
}
|
||||
|
||||
address[pieceIndex] = value;
|
||||
++pieceIndex;
|
||||
}
|
||||
|
||||
if (compress !== null) {
|
||||
let swaps = pieceIndex - compress;
|
||||
pieceIndex = 7;
|
||||
while (pieceIndex !== 0 && swaps > 0) {
|
||||
const temp = address[compress + swaps - 1];
|
||||
address[compress + swaps - 1] = address[pieceIndex];
|
||||
address[pieceIndex] = temp;
|
||||
--pieceIndex;
|
||||
--swaps;
|
||||
}
|
||||
} else if (compress === null && pieceIndex !== 8) {
|
||||
return failure;
|
||||
}
|
||||
|
||||
return address;
|
||||
}
|
||||
|
||||
function serializeIPv6(address) {
|
||||
let output = "";
|
||||
const seqResult = findLongestZeroSequence(address);
|
||||
const compress = seqResult.idx;
|
||||
let ignore0 = false;
|
||||
|
||||
for (let pieceIndex = 0; pieceIndex <= 7; ++pieceIndex) {
|
||||
if (ignore0 && address[pieceIndex] === 0) {
|
||||
continue;
|
||||
} else if (ignore0) {
|
||||
ignore0 = false;
|
||||
}
|
||||
|
||||
if (compress === pieceIndex) {
|
||||
const separator = pieceIndex === 0 ? "::" : ":";
|
||||
output += separator;
|
||||
ignore0 = true;
|
||||
continue;
|
||||
}
|
||||
|
||||
output += address[pieceIndex].toString(16);
|
||||
|
||||
if (pieceIndex !== 7) {
|
||||
output += ":";
|
||||
}
|
||||
}
|
||||
|
||||
return output;
|
||||
}
|
||||
|
||||
function parseHost(input, isSpecialArg) {
|
||||
if (input[0] === "[") {
|
||||
if (input[input.length - 1] !== "]") {
|
||||
return failure;
|
||||
}
|
||||
|
||||
return parseIPv6(input.substring(1, input.length - 1));
|
||||
}
|
||||
|
||||
if (!isSpecialArg) {
|
||||
return parseOpaqueHost(input);
|
||||
}
|
||||
|
||||
const domain = utf8PercentDecode(input);
|
||||
const asciiDomain = tr46.toASCII(domain, false, tr46.PROCESSING_OPTIONS.NONTRANSITIONAL, false);
|
||||
if (asciiDomain === null) {
|
||||
return failure;
|
||||
}
|
||||
|
||||
if (containsForbiddenHostCodePoint(asciiDomain)) {
|
||||
return failure;
|
||||
}
|
||||
|
||||
const ipv4Host = parseIPv4(asciiDomain);
|
||||
if (typeof ipv4Host === "number" || ipv4Host === failure) {
|
||||
return ipv4Host;
|
||||
}
|
||||
|
||||
return asciiDomain;
|
||||
}
|
||||
|
||||
function parseOpaqueHost(input) {
|
||||
if (containsForbiddenHostCodePointExcludingPercent(input)) {
|
||||
return failure;
|
||||
}
|
||||
|
||||
let output = "";
|
||||
const decoded = punycode.ucs2.decode(input);
|
||||
for (let i = 0; i < decoded.length; ++i) {
|
||||
output += percentEncodeChar(decoded[i], isC0ControlPercentEncode);
|
||||
}
|
||||
return output;
|
||||
}
|
||||
|
||||
function findLongestZeroSequence(arr) {
|
||||
let maxIdx = null;
|
||||
let maxLen = 1; // only find elements > 1
|
||||
let currStart = null;
|
||||
let currLen = 0;
|
||||
|
||||
for (let i = 0; i < arr.length; ++i) {
|
||||
if (arr[i] !== 0) {
|
||||
if (currLen > maxLen) {
|
||||
maxIdx = currStart;
|
||||
maxLen = currLen;
|
||||
}
|
||||
|
||||
currStart = null;
|
||||
currLen = 0;
|
||||
} else {
|
||||
if (currStart === null) {
|
||||
currStart = i;
|
||||
}
|
||||
++currLen;
|
||||
}
|
||||
}
|
||||
|
||||
// if trailing zeros
|
||||
if (currLen > maxLen) {
|
||||
maxIdx = currStart;
|
||||
maxLen = currLen;
|
||||
}
|
||||
|
||||
return {
|
||||
idx: maxIdx,
|
||||
len: maxLen
|
||||
};
|
||||
}
|
||||
|
||||
function serializeHost(host) {
|
||||
if (typeof host === "number") {
|
||||
return serializeIPv4(host);
|
||||
}
|
||||
|
||||
// IPv6 serializer
|
||||
if (host instanceof Array) {
|
||||
return "[" + serializeIPv6(host) + "]";
|
||||
}
|
||||
|
||||
return host;
|
||||
}
|
||||
|
||||
function trimControlChars(url) {
|
||||
return url.replace(/^[\u0000-\u001F\u0020]+|[\u0000-\u001F\u0020]+$/g, "");
|
||||
}
|
||||
|
||||
function trimTabAndNewline(url) {
|
||||
return url.replace(/\u0009|\u000A|\u000D/g, "");
|
||||
}
|
||||
|
||||
function shortenPath(url) {
|
||||
const path = url.path;
|
||||
if (path.length === 0) {
|
||||
return;
|
||||
}
|
||||
if (url.scheme === "file" && path.length === 1 && isNormalizedWindowsDriveLetter(path[0])) {
|
||||
return;
|
||||
}
|
||||
|
||||
path.pop();
|
||||
}
|
||||
|
||||
function includesCredentials(url) {
|
||||
return url.username !== "" || url.password !== "";
|
||||
}
|
||||
|
||||
function cannotHaveAUsernamePasswordPort(url) {
|
||||
return url.host === null || url.host === "" || url.cannotBeABaseURL || url.scheme === "file";
|
||||
}
|
||||
|
||||
function isNormalizedWindowsDriveLetter(string) {
|
||||
return /^[A-Za-z]:$/.test(string);
|
||||
}
|
||||
|
||||
function URLStateMachine(input, base, encodingOverride, url, stateOverride) {
|
||||
this.pointer = 0;
|
||||
this.input = input;
|
||||
this.base = base || null;
|
||||
this.encodingOverride = encodingOverride || "utf-8";
|
||||
this.stateOverride = stateOverride;
|
||||
this.url = url;
|
||||
this.failure = false;
|
||||
this.parseError = false;
|
||||
|
||||
if (!this.url) {
|
||||
this.url = {
|
||||
scheme: "",
|
||||
username: "",
|
||||
password: "",
|
||||
host: null,
|
||||
port: null,
|
||||
path: [],
|
||||
query: null,
|
||||
fragment: null,
|
||||
|
||||
cannotBeABaseURL: false
|
||||
};
|
||||
|
||||
const res = trimControlChars(this.input);
|
||||
if (res !== this.input) {
|
||||
this.parseError = true;
|
||||
}
|
||||
this.input = res;
|
||||
}
|
||||
|
||||
const res = trimTabAndNewline(this.input);
|
||||
if (res !== this.input) {
|
||||
this.parseError = true;
|
||||
}
|
||||
this.input = res;
|
||||
|
||||
this.state = stateOverride || "scheme start";
|
||||
|
||||
this.buffer = "";
|
||||
this.atFlag = false;
|
||||
this.arrFlag = false;
|
||||
this.passwordTokenSeenFlag = false;
|
||||
|
||||
this.input = punycode.ucs2.decode(this.input);
|
||||
|
||||
for (; this.pointer <= this.input.length; ++this.pointer) {
|
||||
const c = this.input[this.pointer];
|
||||
const cStr = isNaN(c) ? undefined : String.fromCodePoint(c);
|
||||
|
||||
// exec state machine
|
||||
const ret = this["parse " + this.state](c, cStr);
|
||||
if (!ret) {
|
||||
break; // terminate algorithm
|
||||
} else if (ret === failure) {
|
||||
this.failure = true;
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
URLStateMachine.prototype["parse scheme start"] = function parseSchemeStart(c, cStr) {
|
||||
if (isASCIIAlpha(c)) {
|
||||
this.buffer += cStr.toLowerCase();
|
||||
this.state = "scheme";
|
||||
} else if (!this.stateOverride) {
|
||||
this.state = "no scheme";
|
||||
--this.pointer;
|
||||
} else {
|
||||
this.parseError = true;
|
||||
return failure;
|
||||
}
|
||||
|
||||
return true;
|
||||
};
|
||||
|
||||
URLStateMachine.prototype["parse scheme"] = function parseScheme(c, cStr) {
|
||||
if (isASCIIAlphanumeric(c) || c === 43 || c === 45 || c === 46) {
|
||||
this.buffer += cStr.toLowerCase();
|
||||
} else if (c === 58) {
|
||||
if (this.stateOverride) {
|
||||
if (isSpecial(this.url) && !isSpecialScheme(this.buffer)) {
|
||||
return false;
|
||||
}
|
||||
|
||||
if (!isSpecial(this.url) && isSpecialScheme(this.buffer)) {
|
||||
return false;
|
||||
}
|
||||
|
||||
if ((includesCredentials(this.url) || this.url.port !== null) && this.buffer === "file") {
|
||||
return false;
|
||||
}
|
||||
|
||||
if (this.url.scheme === "file" && (this.url.host === "" || this.url.host === null)) {
|
||||
return false;
|
||||
}
|
||||
}
|
||||
this.url.scheme = this.buffer;
|
||||
this.buffer = "";
|
||||
if (this.stateOverride) {
|
||||
return false;
|
||||
}
|
||||
if (this.url.scheme === "file") {
|
||||
if (this.input[this.pointer + 1] !== 47 || this.input[this.pointer + 2] !== 47) {
|
||||
this.parseError = true;
|
||||
}
|
||||
this.state = "file";
|
||||
} else if (isSpecial(this.url) && this.base !== null && this.base.scheme === this.url.scheme) {
|
||||
this.state = "special relative or authority";
|
||||
} else if (isSpecial(this.url)) {
|
||||
this.state = "special authority slashes";
|
||||
} else if (this.input[this.pointer + 1] === 47) {
|
||||
this.state = "path or authority";
|
||||
++this.pointer;
|
||||
} else {
|
||||
this.url.cannotBeABaseURL = true;
|
||||
this.url.path.push("");
|
||||
this.state = "cannot-be-a-base-URL path";
|
||||
}
|
||||
} else if (!this.stateOverride) {
|
||||
this.buffer = "";
|
||||
this.state = "no scheme";
|
||||
this.pointer = -1;
|
||||
} else {
|
||||
this.parseError = true;
|
||||
return failure;
|
||||
}
|
||||
|
||||
return true;
|
||||
};
|
||||
|
||||
URLStateMachine.prototype["parse no scheme"] = function parseNoScheme(c) {
|
||||
if (this.base === null || (this.base.cannotBeABaseURL && c !== 35)) {
|
||||
return failure;
|
||||
} else if (this.base.cannotBeABaseURL && c === 35) {
|
||||
this.url.scheme = this.base.scheme;
|
||||
this.url.path = this.base.path.slice();
|
||||
this.url.query = this.base.query;
|
||||
this.url.fragment = "";
|
||||
this.url.cannotBeABaseURL = true;
|
||||
this.state = "fragment";
|
||||
} else if (this.base.scheme === "file") {
|
||||
this.state = "file";
|
||||
--this.pointer;
|
||||
} else {
|
||||
this.state = "relative";
|
||||
--this.pointer;
|
||||
}
|
||||
|
||||
return true;
|
||||
};
|
||||
|
||||
URLStateMachine.prototype["parse special relative or authority"] = function parseSpecialRelativeOrAuthority(c) {
|
||||
if (c === 47 && this.input[this.pointer + 1] === 47) {
|
||||
this.state = "special authority ignore slashes";
|
||||
++this.pointer;
|
||||
} else {
|
||||
this.parseError = true;
|
||||
this.state = "relative";
|
||||
--this.pointer;
|
||||
}
|
||||
|
||||
return true;
|
||||
};
|
||||
|
||||
URLStateMachine.prototype["parse path or authority"] = function parsePathOrAuthority(c) {
|
||||
if (c === 47) {
|
||||
this.state = "authority";
|
||||
} else {
|
||||
this.state = "path";
|
||||
--this.pointer;
|
||||
}
|
||||
|
||||
return true;
|
||||
};
|
||||
|
||||
URLStateMachine.prototype["parse relative"] = function parseRelative(c) {
|
||||
this.url.scheme = this.base.scheme;
|
||||
if (isNaN(c)) {
|
||||
this.url.username = this.base.username;
|
||||
this.url.password = this.base.password;
|
||||
this.url.host = this.base.host;
|
||||
this.url.port = this.base.port;
|
||||
this.url.path = this.base.path.slice();
|
||||
this.url.query = this.base.query;
|
||||
} else if (c === 47) {
|
||||
this.state = "relative slash";
|
||||
} else if (c === 63) {
|
||||
this.url.username = this.base.username;
|
||||
this.url.password = this.base.password;
|
||||
this.url.host = this.base.host;
|
||||
this.url.port = this.base.port;
|
||||
this.url.path = this.base.path.slice();
|
||||
this.url.query = "";
|
||||
this.state = "query";
|
||||
} else if (c === 35) {
|
||||
this.url.username = this.base.username;
|
||||
this.url.password = this.base.password;
|
||||
this.url.host = this.base.host;
|
||||
this.url.port = this.base.port;
|
||||
this.url.path = this.base.path.slice();
|
||||
this.url.query = this.base.query;
|
||||
this.url.fragment = "";
|
||||
this.state = "fragment";
|
||||
} else if (isSpecial(this.url) && c === 92) {
|
||||
this.parseError = true;
|
||||
this.state = "relative slash";
|
||||
} else {
|
||||
this.url.username = this.base.username;
|
||||
this.url.password = this.base.password;
|
||||
this.url.host = this.base.host;
|
||||
this.url.port = this.base.port;
|
||||
this.url.path = this.base.path.slice(0, this.base.path.length - 1);
|
||||
|
||||
this.state = "path";
|
||||
--this.pointer;
|
||||
}
|
||||
|
||||
return true;
|
||||
};
|
||||
|
||||
URLStateMachine.prototype["parse relative slash"] = function parseRelativeSlash(c) {
|
||||
if (isSpecial(this.url) && (c === 47 || c === 92)) {
|
||||
if (c === 92) {
|
||||
this.parseError = true;
|
||||
}
|
||||
this.state = "special authority ignore slashes";
|
||||
} else if (c === 47) {
|
||||
this.state = "authority";
|
||||
} else {
|
||||
this.url.username = this.base.username;
|
||||
this.url.password = this.base.password;
|
||||
this.url.host = this.base.host;
|
||||
this.url.port = this.base.port;
|
||||
this.state = "path";
|
||||
--this.pointer;
|
||||
}
|
||||
|
||||
return true;
|
||||
};
|
||||
|
||||
URLStateMachine.prototype["parse special authority slashes"] = function parseSpecialAuthoritySlashes(c) {
|
||||
if (c === 47 && this.input[this.pointer + 1] === 47) {
|
||||
this.state = "special authority ignore slashes";
|
||||
++this.pointer;
|
||||
} else {
|
||||
this.parseError = true;
|
||||
this.state = "special authority ignore slashes";
|
||||
--this.pointer;
|
||||
}
|
||||
|
||||
return true;
|
||||
};
|
||||
|
||||
URLStateMachine.prototype["parse special authority ignore slashes"] = function parseSpecialAuthorityIgnoreSlashes(c) {
|
||||
if (c !== 47 && c !== 92) {
|
||||
this.state = "authority";
|
||||
--this.pointer;
|
||||
} else {
|
||||
this.parseError = true;
|
||||
}
|
||||
|
||||
return true;
|
||||
};
|
||||
|
||||
URLStateMachine.prototype["parse authority"] = function parseAuthority(c, cStr) {
|
||||
if (c === 64) {
|
||||
this.parseError = true;
|
||||
if (this.atFlag) {
|
||||
this.buffer = "%40" + this.buffer;
|
||||
}
|
||||
this.atFlag = true;
|
||||
|
||||
// careful, this is based on buffer and has its own pointer (this.pointer != pointer) and inner chars
|
||||
const len = countSymbols(this.buffer);
|
||||
for (let pointer = 0; pointer < len; ++pointer) {
|
||||
const codePoint = this.buffer.codePointAt(pointer);
|
||||
|
||||
if (codePoint === 58 && !this.passwordTokenSeenFlag) {
|
||||
this.passwordTokenSeenFlag = true;
|
||||
continue;
|
||||
}
|
||||
const encodedCodePoints = percentEncodeChar(codePoint, isUserinfoPercentEncode);
|
||||
if (this.passwordTokenSeenFlag) {
|
||||
this.url.password += encodedCodePoints;
|
||||
} else {
|
||||
this.url.username += encodedCodePoints;
|
||||
}
|
||||
}
|
||||
this.buffer = "";
|
||||
} else if (isNaN(c) || c === 47 || c === 63 || c === 35 ||
|
||||
(isSpecial(this.url) && c === 92)) {
|
||||
if (this.atFlag && this.buffer === "") {
|
||||
this.parseError = true;
|
||||
return failure;
|
||||
}
|
||||
this.pointer -= countSymbols(this.buffer) + 1;
|
||||
this.buffer = "";
|
||||
this.state = "host";
|
||||
} else {
|
||||
this.buffer += cStr;
|
||||
}
|
||||
|
||||
return true;
|
||||
};
|
||||
|
||||
URLStateMachine.prototype["parse hostname"] =
|
||||
URLStateMachine.prototype["parse host"] = function parseHostName(c, cStr) {
|
||||
if (this.stateOverride && this.url.scheme === "file") {
|
||||
--this.pointer;
|
||||
this.state = "file host";
|
||||
} else if (c === 58 && !this.arrFlag) {
|
||||
if (this.buffer === "") {
|
||||
this.parseError = true;
|
||||
return failure;
|
||||
}
|
||||
|
||||
const host = parseHost(this.buffer, isSpecial(this.url));
|
||||
if (host === failure) {
|
||||
return failure;
|
||||
}
|
||||
|
||||
this.url.host = host;
|
||||
this.buffer = "";
|
||||
this.state = "port";
|
||||
if (this.stateOverride === "hostname") {
|
||||
return false;
|
||||
}
|
||||
} else if (isNaN(c) || c === 47 || c === 63 || c === 35 ||
|
||||
(isSpecial(this.url) && c === 92)) {
|
||||
--this.pointer;
|
||||
if (isSpecial(this.url) && this.buffer === "") {
|
||||
this.parseError = true;
|
||||
return failure;
|
||||
} else if (this.stateOverride && this.buffer === "" &&
|
||||
(includesCredentials(this.url) || this.url.port !== null)) {
|
||||
this.parseError = true;
|
||||
return false;
|
||||
}
|
||||
|
||||
const host = parseHost(this.buffer, isSpecial(this.url));
|
||||
if (host === failure) {
|
||||
return failure;
|
||||
}
|
||||
|
||||
this.url.host = host;
|
||||
this.buffer = "";
|
||||
this.state = "path start";
|
||||
if (this.stateOverride) {
|
||||
return false;
|
||||
}
|
||||
} else {
|
||||
if (c === 91) {
|
||||
this.arrFlag = true;
|
||||
} else if (c === 93) {
|
||||
this.arrFlag = false;
|
||||
}
|
||||
this.buffer += cStr;
|
||||
}
|
||||
|
||||
return true;
|
||||
};
|
||||
|
||||
URLStateMachine.prototype["parse port"] = function parsePort(c, cStr) {
|
||||
if (isASCIIDigit(c)) {
|
||||
this.buffer += cStr;
|
||||
} else if (isNaN(c) || c === 47 || c === 63 || c === 35 ||
|
||||
(isSpecial(this.url) && c === 92) ||
|
||||
this.stateOverride) {
|
||||
if (this.buffer !== "") {
|
||||
const port = parseInt(this.buffer);
|
||||
if (port > Math.pow(2, 16) - 1) {
|
||||
this.parseError = true;
|
||||
return failure;
|
||||
}
|
||||
this.url.port = port === defaultPort(this.url.scheme) ? null : port;
|
||||
this.buffer = "";
|
||||
}
|
||||
if (this.stateOverride) {
|
||||
return false;
|
||||
}
|
||||
this.state = "path start";
|
||||
--this.pointer;
|
||||
} else {
|
||||
this.parseError = true;
|
||||
return failure;
|
||||
}
|
||||
|
||||
return true;
|
||||
};
|
||||
|
||||
const fileOtherwiseCodePoints = new Set([47, 92, 63, 35]);
|
||||
|
||||
URLStateMachine.prototype["parse file"] = function parseFile(c) {
|
||||
this.url.scheme = "file";
|
||||
|
||||
if (c === 47 || c === 92) {
|
||||
if (c === 92) {
|
||||
this.parseError = true;
|
||||
}
|
||||
this.state = "file slash";
|
||||
} else if (this.base !== null && this.base.scheme === "file") {
|
||||
if (isNaN(c)) {
|
||||
this.url.host = this.base.host;
|
||||
this.url.path = this.base.path.slice();
|
||||
this.url.query = this.base.query;
|
||||
} else if (c === 63) {
|
||||
this.url.host = this.base.host;
|
||||
this.url.path = this.base.path.slice();
|
||||
this.url.query = "";
|
||||
this.state = "query";
|
||||
} else if (c === 35) {
|
||||
this.url.host = this.base.host;
|
||||
this.url.path = this.base.path.slice();
|
||||
this.url.query = this.base.query;
|
||||
this.url.fragment = "";
|
||||
this.state = "fragment";
|
||||
} else {
|
||||
if (this.input.length - this.pointer - 1 === 0 || // remaining consists of 0 code points
|
||||
!isWindowsDriveLetterCodePoints(c, this.input[this.pointer + 1]) ||
|
||||
(this.input.length - this.pointer - 1 >= 2 && // remaining has at least 2 code points
|
||||
!fileOtherwiseCodePoints.has(this.input[this.pointer + 2]))) {
|
||||
this.url.host = this.base.host;
|
||||
this.url.path = this.base.path.slice();
|
||||
shortenPath(this.url);
|
||||
} else {
|
||||
this.parseError = true;
|
||||
}
|
||||
|
||||
this.state = "path";
|
||||
--this.pointer;
|
||||
}
|
||||
} else {
|
||||
this.state = "path";
|
||||
--this.pointer;
|
||||
}
|
||||
|
||||
return true;
|
||||
};
|
||||
|
||||
URLStateMachine.prototype["parse file slash"] = function parseFileSlash(c) {
|
||||
if (c === 47 || c === 92) {
|
||||
if (c === 92) {
|
||||
this.parseError = true;
|
||||
}
|
||||
this.state = "file host";
|
||||
} else {
|
||||
if (this.base !== null && this.base.scheme === "file") {
|
||||
if (isNormalizedWindowsDriveLetterString(this.base.path[0])) {
|
||||
this.url.path.push(this.base.path[0]);
|
||||
} else {
|
||||
this.url.host = this.base.host;
|
||||
}
|
||||
}
|
||||
this.state = "path";
|
||||
--this.pointer;
|
||||
}
|
||||
|
||||
return true;
|
||||
};
|
||||
|
||||
URLStateMachine.prototype["parse file host"] = function parseFileHost(c, cStr) {
|
||||
if (isNaN(c) || c === 47 || c === 92 || c === 63 || c === 35) {
|
||||
--this.pointer;
|
||||
if (!this.stateOverride && isWindowsDriveLetterString(this.buffer)) {
|
||||
this.parseError = true;
|
||||
this.state = "path";
|
||||
} else if (this.buffer === "") {
|
||||
this.url.host = "";
|
||||
if (this.stateOverride) {
|
||||
return false;
|
||||
}
|
||||
this.state = "path start";
|
||||
} else {
|
||||
let host = parseHost(this.buffer, isSpecial(this.url));
|
||||
if (host === failure) {
|
||||
return failure;
|
||||
}
|
||||
if (host === "localhost") {
|
||||
host = "";
|
||||
}
|
||||
this.url.host = host;
|
||||
|
||||
if (this.stateOverride) {
|
||||
return false;
|
||||
}
|
||||
|
||||
this.buffer = "";
|
||||
this.state = "path start";
|
||||
}
|
||||
} else {
|
||||
this.buffer += cStr;
|
||||
}
|
||||
|
||||
return true;
|
||||
};
|
||||
|
||||
URLStateMachine.prototype["parse path start"] = function parsePathStart(c) {
|
||||
if (isSpecial(this.url)) {
|
||||
if (c === 92) {
|
||||
this.parseError = true;
|
||||
}
|
||||
this.state = "path";
|
||||
|
||||
if (c !== 47 && c !== 92) {
|
||||
--this.pointer;
|
||||
}
|
||||
} else if (!this.stateOverride && c === 63) {
|
||||
this.url.query = "";
|
||||
this.state = "query";
|
||||
} else if (!this.stateOverride && c === 35) {
|
||||
this.url.fragment = "";
|
||||
this.state = "fragment";
|
||||
} else if (c !== undefined) {
|
||||
this.state = "path";
|
||||
if (c !== 47) {
|
||||
--this.pointer;
|
||||
}
|
||||
}
|
||||
|
||||
return true;
|
||||
};
|
||||
|
||||
URLStateMachine.prototype["parse path"] = function parsePath(c) {
|
||||
if (isNaN(c) || c === 47 || (isSpecial(this.url) && c === 92) ||
|
||||
(!this.stateOverride && (c === 63 || c === 35))) {
|
||||
if (isSpecial(this.url) && c === 92) {
|
||||
this.parseError = true;
|
||||
}
|
||||
|
||||
if (isDoubleDot(this.buffer)) {
|
||||
shortenPath(this.url);
|
||||
if (c !== 47 && !(isSpecial(this.url) && c === 92)) {
|
||||
this.url.path.push("");
|
||||
}
|
||||
} else if (isSingleDot(this.buffer) && c !== 47 &&
|
||||
!(isSpecial(this.url) && c === 92)) {
|
||||
this.url.path.push("");
|
||||
} else if (!isSingleDot(this.buffer)) {
|
||||
if (this.url.scheme === "file" && this.url.path.length === 0 && isWindowsDriveLetterString(this.buffer)) {
|
||||
if (this.url.host !== "" && this.url.host !== null) {
|
||||
this.parseError = true;
|
||||
this.url.host = "";
|
||||
}
|
||||
this.buffer = this.buffer[0] + ":";
|
||||
}
|
||||
this.url.path.push(this.buffer);
|
||||
}
|
||||
this.buffer = "";
|
||||
if (this.url.scheme === "file" && (c === undefined || c === 63 || c === 35)) {
|
||||
while (this.url.path.length > 1 && this.url.path[0] === "") {
|
||||
this.parseError = true;
|
||||
this.url.path.shift();
|
||||
}
|
||||
}
|
||||
if (c === 63) {
|
||||
this.url.query = "";
|
||||
this.state = "query";
|
||||
}
|
||||
if (c === 35) {
|
||||
this.url.fragment = "";
|
||||
this.state = "fragment";
|
||||
}
|
||||
} else {
|
||||
// TODO: If c is not a URL code point and not "%", parse error.
|
||||
|
||||
if (c === 37 &&
|
||||
(!isASCIIHex(this.input[this.pointer + 1]) ||
|
||||
!isASCIIHex(this.input[this.pointer + 2]))) {
|
||||
this.parseError = true;
|
||||
}
|
||||
|
||||
this.buffer += percentEncodeChar(c, isPathPercentEncode);
|
||||
}
|
||||
|
||||
return true;
|
||||
};
|
||||
|
||||
URLStateMachine.prototype["parse cannot-be-a-base-URL path"] = function parseCannotBeABaseURLPath(c) {
|
||||
if (c === 63) {
|
||||
this.url.query = "";
|
||||
this.state = "query";
|
||||
} else if (c === 35) {
|
||||
this.url.fragment = "";
|
||||
this.state = "fragment";
|
||||
} else {
|
||||
// TODO: Add: not a URL code point
|
||||
if (!isNaN(c) && c !== 37) {
|
||||
this.parseError = true;
|
||||
}
|
||||
|
||||
if (c === 37 &&
|
||||
(!isASCIIHex(this.input[this.pointer + 1]) ||
|
||||
!isASCIIHex(this.input[this.pointer + 2]))) {
|
||||
this.parseError = true;
|
||||
}
|
||||
|
||||
if (!isNaN(c)) {
|
||||
this.url.path[0] = this.url.path[0] + percentEncodeChar(c, isC0ControlPercentEncode);
|
||||
}
|
||||
}
|
||||
|
||||
return true;
|
||||
};
|
||||
|
||||
URLStateMachine.prototype["parse query"] = function parseQuery(c, cStr) {
|
||||
if (isNaN(c) || (!this.stateOverride && c === 35)) {
|
||||
if (!isSpecial(this.url) || this.url.scheme === "ws" || this.url.scheme === "wss") {
|
||||
this.encodingOverride = "utf-8";
|
||||
}
|
||||
|
||||
const buffer = new Buffer(this.buffer); // TODO: Use encoding override instead
|
||||
for (let i = 0; i < buffer.length; ++i) {
|
||||
if (buffer[i] < 0x21 || buffer[i] > 0x7E || buffer[i] === 0x22 || buffer[i] === 0x23 ||
|
||||
buffer[i] === 0x3C || buffer[i] === 0x3E) {
|
||||
this.url.query += percentEncode(buffer[i]);
|
||||
} else {
|
||||
this.url.query += String.fromCodePoint(buffer[i]);
|
||||
}
|
||||
}
|
||||
|
||||
this.buffer = "";
|
||||
if (c === 35) {
|
||||
this.url.fragment = "";
|
||||
this.state = "fragment";
|
||||
}
|
||||
} else {
|
||||
// TODO: If c is not a URL code point and not "%", parse error.
|
||||
if (c === 37 &&
|
||||
(!isASCIIHex(this.input[this.pointer + 1]) ||
|
||||
!isASCIIHex(this.input[this.pointer + 2]))) {
|
||||
this.parseError = true;
|
||||
}
|
||||
|
||||
this.buffer += cStr;
|
||||
}
|
||||
|
||||
return true;
|
||||
};
|
||||
|
||||
URLStateMachine.prototype["parse fragment"] = function parseFragment(c) {
|
||||
if (isNaN(c)) { // do nothing
|
||||
} else if (c === 0x0) {
|
||||
this.parseError = true;
|
||||
} else {
|
||||
// TODO: If c is not a URL code point and not "%", parse error.
|
||||
if (c === 37 &&
|
||||
(!isASCIIHex(this.input[this.pointer + 1]) ||
|
||||
!isASCIIHex(this.input[this.pointer + 2]))) {
|
||||
this.parseError = true;
|
||||
}
|
||||
|
||||
this.url.fragment += percentEncodeChar(c, isC0ControlPercentEncode);
|
||||
}
|
||||
|
||||
return true;
|
||||
};
|
||||
|
||||
function serializeURL(url, excludeFragment) {
|
||||
let output = url.scheme + ":";
|
||||
if (url.host !== null) {
|
||||
output += "//";
|
||||
|
||||
if (url.username !== "" || url.password !== "") {
|
||||
output += url.username;
|
||||
if (url.password !== "") {
|
||||
output += ":" + url.password;
|
||||
}
|
||||
output += "@";
|
||||
}
|
||||
|
||||
output += serializeHost(url.host);
|
||||
|
||||
if (url.port !== null) {
|
||||
output += ":" + url.port;
|
||||
}
|
||||
} else if (url.host === null && url.scheme === "file") {
|
||||
output += "//";
|
||||
}
|
||||
|
||||
if (url.cannotBeABaseURL) {
|
||||
output += url.path[0];
|
||||
} else {
|
||||
for (const string of url.path) {
|
||||
output += "/" + string;
|
||||
}
|
||||
}
|
||||
|
||||
if (url.query !== null) {
|
||||
output += "?" + url.query;
|
||||
}
|
||||
|
||||
if (!excludeFragment && url.fragment !== null) {
|
||||
output += "#" + url.fragment;
|
||||
}
|
||||
|
||||
return output;
|
||||
}
|
||||
|
||||
function serializeOrigin(tuple) {
|
||||
let result = tuple.scheme + "://";
|
||||
result += serializeHost(tuple.host);
|
||||
|
||||
if (tuple.port !== null) {
|
||||
result += ":" + tuple.port;
|
||||
}
|
||||
|
||||
return result;
|
||||
}
|
||||
|
||||
module.exports.serializeURL = serializeURL;
|
||||
|
||||
module.exports.serializeURLOrigin = function (url) {
|
||||
// https://url.spec.whatwg.org/#concept-url-origin
|
||||
switch (url.scheme) {
|
||||
case "blob":
|
||||
try {
|
||||
return module.exports.serializeURLOrigin(module.exports.parseURL(url.path[0]));
|
||||
} catch (e) {
|
||||
// serializing an opaque origin returns "null"
|
||||
return "null";
|
||||
}
|
||||
case "ftp":
|
||||
case "gopher":
|
||||
case "http":
|
||||
case "https":
|
||||
case "ws":
|
||||
case "wss":
|
||||
return serializeOrigin({
|
||||
scheme: url.scheme,
|
||||
host: url.host,
|
||||
port: url.port
|
||||
});
|
||||
case "file":
|
||||
// spec says "exercise to the reader", chrome says "file://"
|
||||
return "file://";
|
||||
default:
|
||||
// serializing an opaque origin returns "null"
|
||||
return "null";
|
||||
}
|
||||
};
|
||||
|
||||
module.exports.basicURLParse = function (input, options) {
|
||||
if (options === undefined) {
|
||||
options = {};
|
||||
}
|
||||
|
||||
const usm = new URLStateMachine(input, options.baseURL, options.encodingOverride, options.url, options.stateOverride);
|
||||
if (usm.failure) {
|
||||
return "failure";
|
||||
}
|
||||
|
||||
return usm.url;
|
||||
};
|
||||
|
||||
module.exports.setTheUsername = function (url, username) {
|
||||
url.username = "";
|
||||
const decoded = punycode.ucs2.decode(username);
|
||||
for (let i = 0; i < decoded.length; ++i) {
|
||||
url.username += percentEncodeChar(decoded[i], isUserinfoPercentEncode);
|
||||
}
|
||||
};
|
||||
|
||||
module.exports.setThePassword = function (url, password) {
|
||||
url.password = "";
|
||||
const decoded = punycode.ucs2.decode(password);
|
||||
for (let i = 0; i < decoded.length; ++i) {
|
||||
url.password += percentEncodeChar(decoded[i], isUserinfoPercentEncode);
|
||||
}
|
||||
};
|
||||
|
||||
module.exports.serializeHost = serializeHost;
|
||||
|
||||
module.exports.cannotHaveAUsernamePasswordPort = cannotHaveAUsernamePasswordPort;
|
||||
|
||||
module.exports.serializeInteger = function (integer) {
|
||||
return String(integer);
|
||||
};
|
||||
|
||||
module.exports.parseURL = function (input, options) {
|
||||
if (options === undefined) {
|
||||
options = {};
|
||||
}
|
||||
|
||||
// We don't handle blobs, so this just delegates:
|
||||
return module.exports.basicURLParse(input, { baseURL: options.baseURL, encodingOverride: options.encodingOverride });
|
||||
};
|
||||
|
||||
const punycode = __nccwpck_require__(5477);
|
||||
const tr46 = __nccwpck_require__(2299);
|
||||
|
||||
const specialSchemes = {
|
||||
ftp: 21,
|
||||
file: null,
|
||||
gopher: 70,
|
||||
http: 80,
|
||||
https: 443,
|
||||
ws: 80,
|
||||
wss: 443
|
||||
};
|
||||
|
||||
const failure = Symbol("failure");
|
||||
|
||||
function countSymbols(str) {
|
||||
return punycode.ucs2.decode(str).length;
|
||||
}
|
||||
|
||||
function at(input, idx) {
|
||||
const c = input[idx];
|
||||
return isNaN(c) ? undefined : String.fromCodePoint(c);
|
||||
}
|
||||
|
||||
function isASCIIDigit(c) {
|
||||
return c >= 0x30 && c <= 0x39;
|
||||
}
|
||||
|
||||
function isASCIIAlpha(c) {
|
||||
return (c >= 0x41 && c <= 0x5A) || (c >= 0x61 && c <= 0x7A);
|
||||
}
|
||||
|
||||
function isASCIIAlphanumeric(c) {
|
||||
return isASCIIAlpha(c) || isASCIIDigit(c);
|
||||
}
|
||||
|
||||
function isASCIIHex(c) {
|
||||
return isASCIIDigit(c) || (c >= 0x41 && c <= 0x46) || (c >= 0x61 && c <= 0x66);
|
||||
}
|
||||
|
||||
function isSingleDot(buffer) {
|
||||
return buffer === "." || buffer.toLowerCase() === "%2e";
|
||||
}
|
||||
|
||||
function isDoubleDot(buffer) {
|
||||
buffer = buffer.toLowerCase();
|
||||
return buffer === ".." || buffer === "%2e." || buffer === ".%2e" || buffer === "%2e%2e";
|
||||
}
|
||||
|
||||
function isWindowsDriveLetterCodePoints(cp1, cp2) {
|
||||
return isASCIIAlpha(cp1) && (cp2 === 58 || cp2 === 124);
|
||||
}
|
||||
|
||||
function isWindowsDriveLetterString(string) {
|
||||
return string.length === 2 && isASCIIAlpha(string.codePointAt(0)) && (string[1] === ":" || string[1] === "|");
|
||||
}
|
||||
|
||||
function isNormalizedWindowsDriveLetterString(string) {
|
||||
return string.length === 2 && isASCIIAlpha(string.codePointAt(0)) && string[1] === ":";
|
||||
}
|
||||
|
||||
function containsForbiddenHostCodePoint(string) {
|
||||
return string.search(/\u0000|\u0009|\u000A|\u000D|\u0020|#|%|\/|:|\?|@|\[|\\|\]/) !== -1;
|
||||
}
|
||||
|
||||
function containsForbiddenHostCodePointExcludingPercent(string) {
|
||||
return string.search(/\u0000|\u0009|\u000A|\u000D|\u0020|#|\/|:|\?|@|\[|\\|\]/) !== -1;
|
||||
}
|
||||
|
||||
function isSpecialScheme(scheme) {
|
||||
return specialSchemes[scheme] !== undefined;
|
||||
}
|
||||
|
||||
function isSpecial(url) {
|
||||
return isSpecialScheme(url.scheme);
|
||||
}
|
||||
|
||||
function defaultPort(scheme) {
|
||||
return specialSchemes[scheme];
|
||||
}
|
||||
|
||||
function percentEncode(c) {
|
||||
let hex = c.toString(16).toUpperCase();
|
||||
if (hex.length === 1) {
|
||||
hex = "0" + hex;
|
||||
}
|
||||
|
||||
return "%" + hex;
|
||||
}
|
||||
|
||||
function utf8PercentEncode(c) {
|
||||
const buf = new Buffer(c);
|
||||
|
||||
let str = "";
|
||||
|
||||
for (let i = 0; i < buf.length; ++i) {
|
||||
str += percentEncode(buf[i]);
|
||||
}
|
||||
|
||||
return str;
|
||||
}
|
||||
|
||||
function utf8PercentDecode(str) {
|
||||
const input = new Buffer(str);
|
||||
const output = [];
|
||||
for (let i = 0; i < input.length; ++i) {
|
||||
if (input[i] !== 37) {
|
||||
output.push(input[i]);
|
||||
} else if (input[i] === 37 && isASCIIHex(input[i + 1]) && isASCIIHex(input[i + 2])) {
|
||||
output.push(parseInt(input.slice(i + 1, i + 3).toString(), 16));
|
||||
i += 2;
|
||||
} else {
|
||||
output.push(input[i]);
|
||||
}
|
||||
}
|
||||
return new Buffer(output).toString();
|
||||
}
|
||||
|
||||
function isC0ControlPercentEncode(c) {
|
||||
return c <= 0x1F || c > 0x7E;
|
||||
}
|
||||
|
||||
const extraPathPercentEncodeSet = new Set([32, 34, 35, 60, 62, 63, 96, 123, 125]);
|
||||
function isPathPercentEncode(c) {
|
||||
return isC0ControlPercentEncode(c) || extraPathPercentEncodeSet.has(c);
|
||||
}
|
||||
|
||||
const extraUserinfoPercentEncodeSet =
|
||||
new Set([47, 58, 59, 61, 64, 91, 92, 93, 94, 124]);
|
||||
function isUserinfoPercentEncode(c) {
|
||||
return isPathPercentEncode(c) || extraUserinfoPercentEncodeSet.has(c);
|
||||
}
|
||||
|
||||
function percentEncodeChar(c, encodeSetPredicate) {
|
||||
const cStr = String.fromCodePoint(c);
|
||||
|
||||
if (encodeSetPredicate(c)) {
|
||||
return utf8PercentEncode(cStr);
|
||||
}
|
||||
|
||||
return cStr;
|
||||
}
|
||||
|
||||
function parseIPv4Number(input) {
|
||||
let R = 10;
|
||||
|
||||
if (input.length >= 2 && input.charAt(0) === "0" && input.charAt(1).toLowerCase() === "x") {
|
||||
input = input.substring(2);
|
||||
R = 16;
|
||||
} else if (input.length >= 2 && input.charAt(0) === "0") {
|
||||
input = input.substring(1);
|
||||
R = 8;
|
||||
}
|
||||
|
||||
if (input === "") {
|
||||
return 0;
|
||||
}
|
||||
|
||||
const regex = R === 10 ? /[^0-9]/ : (R === 16 ? /[^0-9A-Fa-f]/ : /[^0-7]/);
|
||||
if (regex.test(input)) {
|
||||
return failure;
|
||||
}
|
||||
|
||||
return parseInt(input, R);
|
||||
}
|
||||
|
||||
function parseIPv4(input) {
|
||||
const parts = input.split(".");
|
||||
if (parts[parts.length - 1] === "") {
|
||||
if (parts.length > 1) {
|
||||
parts.pop();
|
||||
}
|
||||
}
|
||||
|
||||
if (parts.length > 4) {
|
||||
return input;
|
||||
}
|
||||
|
||||
const numbers = [];
|
||||
for (const part of parts) {
|
||||
if (part === "") {
|
||||
return input;
|
||||
}
|
||||
const n = parseIPv4Number(part);
|
||||
if (n === failure) {
|
||||
return input;
|
||||
}
|
||||
|
||||
numbers.push(n);
|
||||
}
|
||||
|
||||
for (let i = 0; i < numbers.length - 1; ++i) {
|
||||
if (numbers[i] > 255) {
|
||||
return failure;
|
||||
}
|
||||
}
|
||||
if (numbers[numbers.length - 1] >= Math.pow(256, 5 - numbers.length)) {
|
||||
return failure;
|
||||
}
|
||||
|
||||
let ipv4 = numbers.pop();
|
||||
let counter = 0;
|
||||
|
||||
for (const n of numbers) {
|
||||
ipv4 += n * Math.pow(256, 3 - counter);
|
||||
++counter;
|
||||
}
|
||||
|
||||
return ipv4;
|
||||
}
|
||||
|
||||
function serializeIPv4(address) {
|
||||
let output = "";
|
||||
let n = address;
|
||||
|
||||
for (let i = 1; i <= 4; ++i) {
|
||||
output = String(n % 256) + output;
|
||||
if (i !== 4) {
|
||||
output = "." + output;
|
||||
}
|
||||
n = Math.floor(n / 256);
|
||||
}
|
||||
|
||||
return output;
|
||||
}
|
||||
|
||||
function parseIPv6(input) {
|
||||
const address = [0, 0, 0, 0, 0, 0, 0, 0];
|
||||
let pieceIndex = 0;
|
||||
let compress = null;
|
||||
let pointer = 0;
|
||||
|
||||
input = punycode.ucs2.decode(input);
|
||||
|
||||
if (input[pointer] === 58) {
|
||||
if (input[pointer + 1] !== 58) {
|
||||
return failure;
|
||||
}
|
||||
|
||||
pointer += 2;
|
||||
++pieceIndex;
|
||||
compress = pieceIndex;
|
||||
}
|
||||
|
||||
while (pointer < input.length) {
|
||||
if (pieceIndex === 8) {
|
||||
return failure;
|
||||
}
|
||||
|
||||
if (input[pointer] === 58) {
|
||||
if (compress !== null) {
|
||||
return failure;
|
||||
}
|
||||
++pointer;
|
||||
++pieceIndex;
|
||||
compress = pieceIndex;
|
||||
continue;
|
||||
}
|
||||
|
||||
let value = 0;
|
||||
let length = 0;
|
||||
|
||||
while (length < 4 && isASCIIHex(input[pointer])) {
|
||||
value = value * 0x10 + parseInt(at(input, pointer), 16);
|
||||
++pointer;
|
||||
++length;
|
||||
}
|
||||
|
||||
if (input[pointer] === 46) {
|
||||
if (length === 0) {
|
||||
return failure;
|
||||
}
|
||||
|
||||
pointer -= length;
|
||||
|
||||
if (pieceIndex > 6) {
|
||||
return failure;
|
||||
}
|
||||
|
||||
let numbersSeen = 0;
|
||||
|
||||
while (input[pointer] !== undefined) {
|
||||
let ipv4Piece = null;
|
||||
|
||||
if (numbersSeen > 0) {
|
||||
if (input[pointer] === 46 && numbersSeen < 4) {
|
||||
++pointer;
|
||||
} else {
|
||||
return failure;
|
||||
}
|
||||
}
|
||||
|
||||
if (!isASCIIDigit(input[pointer])) {
|
||||
return failure;
|
||||
}
|
||||
|
||||
while (isASCIIDigit(input[pointer])) {
|
||||
const number = parseInt(at(input, pointer));
|
||||
if (ipv4Piece === null) {
|
||||
ipv4Piece = number;
|
||||
} else if (ipv4Piece === 0) {
|
||||
return failure;
|
||||
} else {
|
||||
ipv4Piece = ipv4Piece * 10 + number;
|
||||
}
|
||||
if (ipv4Piece > 255) {
|
||||
return failure;
|
||||
}
|
||||
++pointer;
|
||||
}
|
||||
|
||||
address[pieceIndex] = address[pieceIndex] * 0x100 + ipv4Piece;
|
||||
|
||||
++numbersSeen;
|
||||
|
||||
if (numbersSeen === 2 || numbersSeen === 4) {
|
||||
++pieceIndex;
|
||||
}
|
||||
}
|
||||
|
||||
if (numbersSeen !== 4) {
|
||||
return failure;
|
||||
}
|
||||
|
||||
break;
|
||||
} else if (input[pointer] === 58) {
|
||||
++pointer;
|
||||
if (input[pointer] === undefined) {
|
||||
return failure;
|
||||
}
|
||||
} else if (input[pointer] !== undefined) {
|
||||
return failure;
|
||||
}
|
||||
|
||||
address[pieceIndex] = value;
|
||||
++pieceIndex;
|
||||
}
|
||||
|
||||
if (compress !== null) {
|
||||
let swaps = pieceIndex - compress;
|
||||
pieceIndex = 7;
|
||||
while (pieceIndex !== 0 && swaps > 0) {
|
||||
const temp = address[compress + swaps - 1];
|
||||
address[compress + swaps - 1] = address[pieceIndex];
|
||||
address[pieceIndex] = temp;
|
||||
--pieceIndex;
|
||||
--swaps;
|
||||
}
|
||||
} else if (compress === null && pieceIndex !== 8) {
|
||||
return failure;
|
||||
}
|
||||
|
||||
return address;
|
||||
}
|
||||
|
||||
function serializeIPv6(address) {
|
||||
let output = "";
|
||||
const seqResult = findLongestZeroSequence(address);
|
||||
const compress = seqResult.idx;
|
||||
let ignore0 = false;
|
||||
|
||||
for (let pieceIndex = 0; pieceIndex <= 7; ++pieceIndex) {
|
||||
if (ignore0 && address[pieceIndex] === 0) {
|
||||
continue;
|
||||
} else if (ignore0) {
|
||||
ignore0 = false;
|
||||
}
|
||||
|
||||
if (compress === pieceIndex) {
|
||||
const separator = pieceIndex === 0 ? "::" : ":";
|
||||
output += separator;
|
||||
ignore0 = true;
|
||||
continue;
|
||||
}
|
||||
|
||||
output += address[pieceIndex].toString(16);
|
||||
|
||||
if (pieceIndex !== 7) {
|
||||
output += ":";
|
||||
}
|
||||
}
|
||||
|
||||
return output;
|
||||
}
|
||||
|
||||
function parseHost(input, isSpecialArg) {
|
||||
if (input[0] === "[") {
|
||||
if (input[input.length - 1] !== "]") {
|
||||
return failure;
|
||||
}
|
||||
|
||||
return parseIPv6(input.substring(1, input.length - 1));
|
||||
}
|
||||
|
||||
if (!isSpecialArg) {
|
||||
return parseOpaqueHost(input);
|
||||
}
|
||||
|
||||
const domain = utf8PercentDecode(input);
|
||||
const asciiDomain = tr46.toASCII(domain, false, tr46.PROCESSING_OPTIONS.NONTRANSITIONAL, false);
|
||||
if (asciiDomain === null) {
|
||||
return failure;
|
||||
}
|
||||
|
||||
if (containsForbiddenHostCodePoint(asciiDomain)) {
|
||||
return failure;
|
||||
}
|
||||
|
||||
const ipv4Host = parseIPv4(asciiDomain);
|
||||
if (typeof ipv4Host === "number" || ipv4Host === failure) {
|
||||
return ipv4Host;
|
||||
}
|
||||
|
||||
return asciiDomain;
|
||||
}
|
||||
|
||||
function parseOpaqueHost(input) {
|
||||
if (containsForbiddenHostCodePointExcludingPercent(input)) {
|
||||
return failure;
|
||||
}
|
||||
|
||||
let output = "";
|
||||
const decoded = punycode.ucs2.decode(input);
|
||||
for (let i = 0; i < decoded.length; ++i) {
|
||||
output += percentEncodeChar(decoded[i], isC0ControlPercentEncode);
|
||||
}
|
||||
return output;
|
||||
}
|
||||
|
||||
function findLongestZeroSequence(arr) {
|
||||
let maxIdx = null;
|
||||
let maxLen = 1; // only find elements > 1
|
||||
let currStart = null;
|
||||
let currLen = 0;
|
||||
|
||||
for (let i = 0; i < arr.length; ++i) {
|
||||
if (arr[i] !== 0) {
|
||||
if (currLen > maxLen) {
|
||||
maxIdx = currStart;
|
||||
maxLen = currLen;
|
||||
}
|
||||
|
||||
currStart = null;
|
||||
currLen = 0;
|
||||
} else {
|
||||
if (currStart === null) {
|
||||
currStart = i;
|
||||
}
|
||||
++currLen;
|
||||
}
|
||||
}
|
||||
|
||||
// if trailing zeros
|
||||
if (currLen > maxLen) {
|
||||
maxIdx = currStart;
|
||||
maxLen = currLen;
|
||||
}
|
||||
|
||||
return {
|
||||
idx: maxIdx,
|
||||
len: maxLen
|
||||
};
|
||||
}
|
||||
|
||||
function serializeHost(host) {
|
||||
if (typeof host === "number") {
|
||||
return serializeIPv4(host);
|
||||
}
|
||||
|
||||
// IPv6 serializer
|
||||
if (host instanceof Array) {
|
||||
return "[" + serializeIPv6(host) + "]";
|
||||
}
|
||||
|
||||
return host;
|
||||
}
|
||||
|
||||
function trimControlChars(url) {
|
||||
return url.replace(/^[\u0000-\u001F\u0020]+|[\u0000-\u001F\u0020]+$/g, "");
|
||||
}
|
||||
|
||||
function trimTabAndNewline(url) {
|
||||
return url.replace(/\u0009|\u000A|\u000D/g, "");
|
||||
}
|
||||
|
||||
function shortenPath(url) {
|
||||
const path = url.path;
|
||||
if (path.length === 0) {
|
||||
return;
|
||||
}
|
||||
if (url.scheme === "file" && path.length === 1 && isNormalizedWindowsDriveLetter(path[0])) {
|
||||
return;
|
||||
}
|
||||
|
||||
path.pop();
|
||||
}
|
||||
|
||||
function includesCredentials(url) {
|
||||
return url.username !== "" || url.password !== "";
|
||||
}
|
||||
|
||||
function cannotHaveAUsernamePasswordPort(url) {
|
||||
return url.host === null || url.host === "" || url.cannotBeABaseURL || url.scheme === "file";
|
||||
}
|
||||
|
||||
function isNormalizedWindowsDriveLetter(string) {
|
||||
return /^[A-Za-z]:$/.test(string);
|
||||
}
|
||||
|
||||
function URLStateMachine(input, base, encodingOverride, url, stateOverride) {
|
||||
this.pointer = 0;
|
||||
this.input = input;
|
||||
this.base = base || null;
|
||||
this.encodingOverride = encodingOverride || "utf-8";
|
||||
this.stateOverride = stateOverride;
|
||||
this.url = url;
|
||||
this.failure = false;
|
||||
this.parseError = false;
|
||||
|
||||
if (!this.url) {
|
||||
this.url = {
|
||||
scheme: "",
|
||||
username: "",
|
||||
password: "",
|
||||
host: null,
|
||||
port: null,
|
||||
path: [],
|
||||
query: null,
|
||||
fragment: null,
|
||||
|
||||
cannotBeABaseURL: false
|
||||
};
|
||||
|
||||
const res = trimControlChars(this.input);
|
||||
if (res !== this.input) {
|
||||
this.parseError = true;
|
||||
}
|
||||
this.input = res;
|
||||
}
|
||||
|
||||
const res = trimTabAndNewline(this.input);
|
||||
if (res !== this.input) {
|
||||
this.parseError = true;
|
||||
}
|
||||
this.input = res;
|
||||
|
||||
this.state = stateOverride || "scheme start";
|
||||
|
||||
this.buffer = "";
|
||||
this.atFlag = false;
|
||||
this.arrFlag = false;
|
||||
this.passwordTokenSeenFlag = false;
|
||||
|
||||
this.input = punycode.ucs2.decode(this.input);
|
||||
|
||||
for (; this.pointer <= this.input.length; ++this.pointer) {
|
||||
const c = this.input[this.pointer];
|
||||
const cStr = isNaN(c) ? undefined : String.fromCodePoint(c);
|
||||
|
||||
// exec state machine
|
||||
const ret = this["parse " + this.state](c, cStr);
|
||||
if (!ret) {
|
||||
break; // terminate algorithm
|
||||
} else if (ret === failure) {
|
||||
this.failure = true;
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
URLStateMachine.prototype["parse scheme start"] = function parseSchemeStart(c, cStr) {
|
||||
if (isASCIIAlpha(c)) {
|
||||
this.buffer += cStr.toLowerCase();
|
||||
this.state = "scheme";
|
||||
} else if (!this.stateOverride) {
|
||||
this.state = "no scheme";
|
||||
--this.pointer;
|
||||
} else {
|
||||
this.parseError = true;
|
||||
return failure;
|
||||
}
|
||||
|
||||
return true;
|
||||
};
|
||||
|
||||
URLStateMachine.prototype["parse scheme"] = function parseScheme(c, cStr) {
|
||||
if (isASCIIAlphanumeric(c) || c === 43 || c === 45 || c === 46) {
|
||||
this.buffer += cStr.toLowerCase();
|
||||
} else if (c === 58) {
|
||||
if (this.stateOverride) {
|
||||
if (isSpecial(this.url) && !isSpecialScheme(this.buffer)) {
|
||||
return false;
|
||||
}
|
||||
|
||||
if (!isSpecial(this.url) && isSpecialScheme(this.buffer)) {
|
||||
return false;
|
||||
}
|
||||
|
||||
if ((includesCredentials(this.url) || this.url.port !== null) && this.buffer === "file") {
|
||||
return false;
|
||||
}
|
||||
|
||||
if (this.url.scheme === "file" && (this.url.host === "" || this.url.host === null)) {
|
||||
return false;
|
||||
}
|
||||
}
|
||||
this.url.scheme = this.buffer;
|
||||
this.buffer = "";
|
||||
if (this.stateOverride) {
|
||||
return false;
|
||||
}
|
||||
if (this.url.scheme === "file") {
|
||||
if (this.input[this.pointer + 1] !== 47 || this.input[this.pointer + 2] !== 47) {
|
||||
this.parseError = true;
|
||||
}
|
||||
this.state = "file";
|
||||
} else if (isSpecial(this.url) && this.base !== null && this.base.scheme === this.url.scheme) {
|
||||
this.state = "special relative or authority";
|
||||
} else if (isSpecial(this.url)) {
|
||||
this.state = "special authority slashes";
|
||||
} else if (this.input[this.pointer + 1] === 47) {
|
||||
this.state = "path or authority";
|
||||
++this.pointer;
|
||||
} else {
|
||||
this.url.cannotBeABaseURL = true;
|
||||
this.url.path.push("");
|
||||
this.state = "cannot-be-a-base-URL path";
|
||||
}
|
||||
} else if (!this.stateOverride) {
|
||||
this.buffer = "";
|
||||
this.state = "no scheme";
|
||||
this.pointer = -1;
|
||||
} else {
|
||||
this.parseError = true;
|
||||
return failure;
|
||||
}
|
||||
|
||||
return true;
|
||||
};
|
||||
|
||||
URLStateMachine.prototype["parse no scheme"] = function parseNoScheme(c) {
|
||||
if (this.base === null || (this.base.cannotBeABaseURL && c !== 35)) {
|
||||
return failure;
|
||||
} else if (this.base.cannotBeABaseURL && c === 35) {
|
||||
this.url.scheme = this.base.scheme;
|
||||
this.url.path = this.base.path.slice();
|
||||
this.url.query = this.base.query;
|
||||
this.url.fragment = "";
|
||||
this.url.cannotBeABaseURL = true;
|
||||
this.state = "fragment";
|
||||
} else if (this.base.scheme === "file") {
|
||||
this.state = "file";
|
||||
--this.pointer;
|
||||
} else {
|
||||
this.state = "relative";
|
||||
--this.pointer;
|
||||
}
|
||||
|
||||
return true;
|
||||
};
|
||||
|
||||
URLStateMachine.prototype["parse special relative or authority"] = function parseSpecialRelativeOrAuthority(c) {
|
||||
if (c === 47 && this.input[this.pointer + 1] === 47) {
|
||||
this.state = "special authority ignore slashes";
|
||||
++this.pointer;
|
||||
} else {
|
||||
this.parseError = true;
|
||||
this.state = "relative";
|
||||
--this.pointer;
|
||||
}
|
||||
|
||||
return true;
|
||||
};
|
||||
|
||||
URLStateMachine.prototype["parse path or authority"] = function parsePathOrAuthority(c) {
|
||||
if (c === 47) {
|
||||
this.state = "authority";
|
||||
} else {
|
||||
this.state = "path";
|
||||
--this.pointer;
|
||||
}
|
||||
|
||||
return true;
|
||||
};
|
||||
|
||||
URLStateMachine.prototype["parse relative"] = function parseRelative(c) {
|
||||
this.url.scheme = this.base.scheme;
|
||||
if (isNaN(c)) {
|
||||
this.url.username = this.base.username;
|
||||
this.url.password = this.base.password;
|
||||
this.url.host = this.base.host;
|
||||
this.url.port = this.base.port;
|
||||
this.url.path = this.base.path.slice();
|
||||
this.url.query = this.base.query;
|
||||
} else if (c === 47) {
|
||||
this.state = "relative slash";
|
||||
} else if (c === 63) {
|
||||
this.url.username = this.base.username;
|
||||
this.url.password = this.base.password;
|
||||
this.url.host = this.base.host;
|
||||
this.url.port = this.base.port;
|
||||
this.url.path = this.base.path.slice();
|
||||
this.url.query = "";
|
||||
this.state = "query";
|
||||
} else if (c === 35) {
|
||||
this.url.username = this.base.username;
|
||||
this.url.password = this.base.password;
|
||||
this.url.host = this.base.host;
|
||||
this.url.port = this.base.port;
|
||||
this.url.path = this.base.path.slice();
|
||||
this.url.query = this.base.query;
|
||||
this.url.fragment = "";
|
||||
this.state = "fragment";
|
||||
} else if (isSpecial(this.url) && c === 92) {
|
||||
this.parseError = true;
|
||||
this.state = "relative slash";
|
||||
} else {
|
||||
this.url.username = this.base.username;
|
||||
this.url.password = this.base.password;
|
||||
this.url.host = this.base.host;
|
||||
this.url.port = this.base.port;
|
||||
this.url.path = this.base.path.slice(0, this.base.path.length - 1);
|
||||
|
||||
this.state = "path";
|
||||
--this.pointer;
|
||||
}
|
||||
|
||||
return true;
|
||||
};
|
||||
|
||||
URLStateMachine.prototype["parse relative slash"] = function parseRelativeSlash(c) {
|
||||
if (isSpecial(this.url) && (c === 47 || c === 92)) {
|
||||
if (c === 92) {
|
||||
this.parseError = true;
|
||||
}
|
||||
this.state = "special authority ignore slashes";
|
||||
} else if (c === 47) {
|
||||
this.state = "authority";
|
||||
} else {
|
||||
this.url.username = this.base.username;
|
||||
this.url.password = this.base.password;
|
||||
this.url.host = this.base.host;
|
||||
this.url.port = this.base.port;
|
||||
this.state = "path";
|
||||
--this.pointer;
|
||||
}
|
||||
|
||||
return true;
|
||||
};
|
||||
|
||||
URLStateMachine.prototype["parse special authority slashes"] = function parseSpecialAuthoritySlashes(c) {
|
||||
if (c === 47 && this.input[this.pointer + 1] === 47) {
|
||||
this.state = "special authority ignore slashes";
|
||||
++this.pointer;
|
||||
} else {
|
||||
this.parseError = true;
|
||||
this.state = "special authority ignore slashes";
|
||||
--this.pointer;
|
||||
}
|
||||
|
||||
return true;
|
||||
};
|
||||
|
||||
URLStateMachine.prototype["parse special authority ignore slashes"] = function parseSpecialAuthorityIgnoreSlashes(c) {
|
||||
if (c !== 47 && c !== 92) {
|
||||
this.state = "authority";
|
||||
--this.pointer;
|
||||
} else {
|
||||
this.parseError = true;
|
||||
}
|
||||
|
||||
return true;
|
||||
};
|
||||
|
||||
URLStateMachine.prototype["parse authority"] = function parseAuthority(c, cStr) {
|
||||
if (c === 64) {
|
||||
this.parseError = true;
|
||||
if (this.atFlag) {
|
||||
this.buffer = "%40" + this.buffer;
|
||||
}
|
||||
this.atFlag = true;
|
||||
|
||||
// careful, this is based on buffer and has its own pointer (this.pointer != pointer) and inner chars
|
||||
const len = countSymbols(this.buffer);
|
||||
for (let pointer = 0; pointer < len; ++pointer) {
|
||||
const codePoint = this.buffer.codePointAt(pointer);
|
||||
|
||||
if (codePoint === 58 && !this.passwordTokenSeenFlag) {
|
||||
this.passwordTokenSeenFlag = true;
|
||||
continue;
|
||||
}
|
||||
const encodedCodePoints = percentEncodeChar(codePoint, isUserinfoPercentEncode);
|
||||
if (this.passwordTokenSeenFlag) {
|
||||
this.url.password += encodedCodePoints;
|
||||
} else {
|
||||
this.url.username += encodedCodePoints;
|
||||
}
|
||||
}
|
||||
this.buffer = "";
|
||||
} else if (isNaN(c) || c === 47 || c === 63 || c === 35 ||
|
||||
(isSpecial(this.url) && c === 92)) {
|
||||
if (this.atFlag && this.buffer === "") {
|
||||
this.parseError = true;
|
||||
return failure;
|
||||
}
|
||||
this.pointer -= countSymbols(this.buffer) + 1;
|
||||
this.buffer = "";
|
||||
this.state = "host";
|
||||
} else {
|
||||
this.buffer += cStr;
|
||||
}
|
||||
|
||||
return true;
|
||||
};
|
||||
|
||||
URLStateMachine.prototype["parse hostname"] =
|
||||
URLStateMachine.prototype["parse host"] = function parseHostName(c, cStr) {
|
||||
if (this.stateOverride && this.url.scheme === "file") {
|
||||
--this.pointer;
|
||||
this.state = "file host";
|
||||
} else if (c === 58 && !this.arrFlag) {
|
||||
if (this.buffer === "") {
|
||||
this.parseError = true;
|
||||
return failure;
|
||||
}
|
||||
|
||||
const host = parseHost(this.buffer, isSpecial(this.url));
|
||||
if (host === failure) {
|
||||
return failure;
|
||||
}
|
||||
|
||||
this.url.host = host;
|
||||
this.buffer = "";
|
||||
this.state = "port";
|
||||
if (this.stateOverride === "hostname") {
|
||||
return false;
|
||||
}
|
||||
} else if (isNaN(c) || c === 47 || c === 63 || c === 35 ||
|
||||
(isSpecial(this.url) && c === 92)) {
|
||||
--this.pointer;
|
||||
if (isSpecial(this.url) && this.buffer === "") {
|
||||
this.parseError = true;
|
||||
return failure;
|
||||
} else if (this.stateOverride && this.buffer === "" &&
|
||||
(includesCredentials(this.url) || this.url.port !== null)) {
|
||||
this.parseError = true;
|
||||
return false;
|
||||
}
|
||||
|
||||
const host = parseHost(this.buffer, isSpecial(this.url));
|
||||
if (host === failure) {
|
||||
return failure;
|
||||
}
|
||||
|
||||
this.url.host = host;
|
||||
this.buffer = "";
|
||||
this.state = "path start";
|
||||
if (this.stateOverride) {
|
||||
return false;
|
||||
}
|
||||
} else {
|
||||
if (c === 91) {
|
||||
this.arrFlag = true;
|
||||
} else if (c === 93) {
|
||||
this.arrFlag = false;
|
||||
}
|
||||
this.buffer += cStr;
|
||||
}
|
||||
|
||||
return true;
|
||||
};
|
||||
|
||||
URLStateMachine.prototype["parse port"] = function parsePort(c, cStr) {
|
||||
if (isASCIIDigit(c)) {
|
||||
this.buffer += cStr;
|
||||
} else if (isNaN(c) || c === 47 || c === 63 || c === 35 ||
|
||||
(isSpecial(this.url) && c === 92) ||
|
||||
this.stateOverride) {
|
||||
if (this.buffer !== "") {
|
||||
const port = parseInt(this.buffer);
|
||||
if (port > Math.pow(2, 16) - 1) {
|
||||
this.parseError = true;
|
||||
return failure;
|
||||
}
|
||||
this.url.port = port === defaultPort(this.url.scheme) ? null : port;
|
||||
this.buffer = "";
|
||||
}
|
||||
if (this.stateOverride) {
|
||||
return false;
|
||||
}
|
||||
this.state = "path start";
|
||||
--this.pointer;
|
||||
} else {
|
||||
this.parseError = true;
|
||||
return failure;
|
||||
}
|
||||
|
||||
return true;
|
||||
};
|
||||
|
||||
const fileOtherwiseCodePoints = new Set([47, 92, 63, 35]);
|
||||
|
||||
URLStateMachine.prototype["parse file"] = function parseFile(c) {
|
||||
this.url.scheme = "file";
|
||||
|
||||
if (c === 47 || c === 92) {
|
||||
if (c === 92) {
|
||||
this.parseError = true;
|
||||
}
|
||||
this.state = "file slash";
|
||||
} else if (this.base !== null && this.base.scheme === "file") {
|
||||
if (isNaN(c)) {
|
||||
this.url.host = this.base.host;
|
||||
this.url.path = this.base.path.slice();
|
||||
this.url.query = this.base.query;
|
||||
} else if (c === 63) {
|
||||
this.url.host = this.base.host;
|
||||
this.url.path = this.base.path.slice();
|
||||
this.url.query = "";
|
||||
this.state = "query";
|
||||
} else if (c === 35) {
|
||||
this.url.host = this.base.host;
|
||||
this.url.path = this.base.path.slice();
|
||||
this.url.query = this.base.query;
|
||||
this.url.fragment = "";
|
||||
this.state = "fragment";
|
||||
} else {
|
||||
if (this.input.length - this.pointer - 1 === 0 || // remaining consists of 0 code points
|
||||
!isWindowsDriveLetterCodePoints(c, this.input[this.pointer + 1]) ||
|
||||
(this.input.length - this.pointer - 1 >= 2 && // remaining has at least 2 code points
|
||||
!fileOtherwiseCodePoints.has(this.input[this.pointer + 2]))) {
|
||||
this.url.host = this.base.host;
|
||||
this.url.path = this.base.path.slice();
|
||||
shortenPath(this.url);
|
||||
} else {
|
||||
this.parseError = true;
|
||||
}
|
||||
|
||||
this.state = "path";
|
||||
--this.pointer;
|
||||
}
|
||||
} else {
|
||||
this.state = "path";
|
||||
--this.pointer;
|
||||
}
|
||||
|
||||
return true;
|
||||
};
|
||||
|
||||
URLStateMachine.prototype["parse file slash"] = function parseFileSlash(c) {
|
||||
if (c === 47 || c === 92) {
|
||||
if (c === 92) {
|
||||
this.parseError = true;
|
||||
}
|
||||
this.state = "file host";
|
||||
} else {
|
||||
if (this.base !== null && this.base.scheme === "file") {
|
||||
if (isNormalizedWindowsDriveLetterString(this.base.path[0])) {
|
||||
this.url.path.push(this.base.path[0]);
|
||||
} else {
|
||||
this.url.host = this.base.host;
|
||||
}
|
||||
}
|
||||
this.state = "path";
|
||||
--this.pointer;
|
||||
}
|
||||
|
||||
return true;
|
||||
};
|
||||
|
||||
URLStateMachine.prototype["parse file host"] = function parseFileHost(c, cStr) {
|
||||
if (isNaN(c) || c === 47 || c === 92 || c === 63 || c === 35) {
|
||||
--this.pointer;
|
||||
if (!this.stateOverride && isWindowsDriveLetterString(this.buffer)) {
|
||||
this.parseError = true;
|
||||
this.state = "path";
|
||||
} else if (this.buffer === "") {
|
||||
this.url.host = "";
|
||||
if (this.stateOverride) {
|
||||
return false;
|
||||
}
|
||||
this.state = "path start";
|
||||
} else {
|
||||
let host = parseHost(this.buffer, isSpecial(this.url));
|
||||
if (host === failure) {
|
||||
return failure;
|
||||
}
|
||||
if (host === "localhost") {
|
||||
host = "";
|
||||
}
|
||||
this.url.host = host;
|
||||
|
||||
if (this.stateOverride) {
|
||||
return false;
|
||||
}
|
||||
|
||||
this.buffer = "";
|
||||
this.state = "path start";
|
||||
}
|
||||
} else {
|
||||
this.buffer += cStr;
|
||||
}
|
||||
|
||||
return true;
|
||||
};
|
||||
|
||||
URLStateMachine.prototype["parse path start"] = function parsePathStart(c) {
|
||||
if (isSpecial(this.url)) {
|
||||
if (c === 92) {
|
||||
this.parseError = true;
|
||||
}
|
||||
this.state = "path";
|
||||
|
||||
if (c !== 47 && c !== 92) {
|
||||
--this.pointer;
|
||||
}
|
||||
} else if (!this.stateOverride && c === 63) {
|
||||
this.url.query = "";
|
||||
this.state = "query";
|
||||
} else if (!this.stateOverride && c === 35) {
|
||||
this.url.fragment = "";
|
||||
this.state = "fragment";
|
||||
} else if (c !== undefined) {
|
||||
this.state = "path";
|
||||
if (c !== 47) {
|
||||
--this.pointer;
|
||||
}
|
||||
}
|
||||
|
||||
return true;
|
||||
};
|
||||
|
||||
URLStateMachine.prototype["parse path"] = function parsePath(c) {
|
||||
if (isNaN(c) || c === 47 || (isSpecial(this.url) && c === 92) ||
|
||||
(!this.stateOverride && (c === 63 || c === 35))) {
|
||||
if (isSpecial(this.url) && c === 92) {
|
||||
this.parseError = true;
|
||||
}
|
||||
|
||||
if (isDoubleDot(this.buffer)) {
|
||||
shortenPath(this.url);
|
||||
if (c !== 47 && !(isSpecial(this.url) && c === 92)) {
|
||||
this.url.path.push("");
|
||||
}
|
||||
} else if (isSingleDot(this.buffer) && c !== 47 &&
|
||||
!(isSpecial(this.url) && c === 92)) {
|
||||
this.url.path.push("");
|
||||
} else if (!isSingleDot(this.buffer)) {
|
||||
if (this.url.scheme === "file" && this.url.path.length === 0 && isWindowsDriveLetterString(this.buffer)) {
|
||||
if (this.url.host !== "" && this.url.host !== null) {
|
||||
this.parseError = true;
|
||||
this.url.host = "";
|
||||
}
|
||||
this.buffer = this.buffer[0] + ":";
|
||||
}
|
||||
this.url.path.push(this.buffer);
|
||||
}
|
||||
this.buffer = "";
|
||||
if (this.url.scheme === "file" && (c === undefined || c === 63 || c === 35)) {
|
||||
while (this.url.path.length > 1 && this.url.path[0] === "") {
|
||||
this.parseError = true;
|
||||
this.url.path.shift();
|
||||
}
|
||||
}
|
||||
if (c === 63) {
|
||||
this.url.query = "";
|
||||
this.state = "query";
|
||||
}
|
||||
if (c === 35) {
|
||||
this.url.fragment = "";
|
||||
this.state = "fragment";
|
||||
}
|
||||
} else {
|
||||
// TODO: If c is not a URL code point and not "%", parse error.
|
||||
|
||||
if (c === 37 &&
|
||||
(!isASCIIHex(this.input[this.pointer + 1]) ||
|
||||
!isASCIIHex(this.input[this.pointer + 2]))) {
|
||||
this.parseError = true;
|
||||
}
|
||||
|
||||
this.buffer += percentEncodeChar(c, isPathPercentEncode);
|
||||
}
|
||||
|
||||
return true;
|
||||
};
|
||||
|
||||
URLStateMachine.prototype["parse cannot-be-a-base-URL path"] = function parseCannotBeABaseURLPath(c) {
|
||||
if (c === 63) {
|
||||
this.url.query = "";
|
||||
this.state = "query";
|
||||
} else if (c === 35) {
|
||||
this.url.fragment = "";
|
||||
this.state = "fragment";
|
||||
} else {
|
||||
// TODO: Add: not a URL code point
|
||||
if (!isNaN(c) && c !== 37) {
|
||||
this.parseError = true;
|
||||
}
|
||||
|
||||
if (c === 37 &&
|
||||
(!isASCIIHex(this.input[this.pointer + 1]) ||
|
||||
!isASCIIHex(this.input[this.pointer + 2]))) {
|
||||
this.parseError = true;
|
||||
}
|
||||
|
||||
if (!isNaN(c)) {
|
||||
this.url.path[0] = this.url.path[0] + percentEncodeChar(c, isC0ControlPercentEncode);
|
||||
}
|
||||
}
|
||||
|
||||
return true;
|
||||
};
|
||||
|
||||
URLStateMachine.prototype["parse query"] = function parseQuery(c, cStr) {
|
||||
if (isNaN(c) || (!this.stateOverride && c === 35)) {
|
||||
if (!isSpecial(this.url) || this.url.scheme === "ws" || this.url.scheme === "wss") {
|
||||
this.encodingOverride = "utf-8";
|
||||
}
|
||||
|
||||
const buffer = new Buffer(this.buffer); // TODO: Use encoding override instead
|
||||
for (let i = 0; i < buffer.length; ++i) {
|
||||
if (buffer[i] < 0x21 || buffer[i] > 0x7E || buffer[i] === 0x22 || buffer[i] === 0x23 ||
|
||||
buffer[i] === 0x3C || buffer[i] === 0x3E) {
|
||||
this.url.query += percentEncode(buffer[i]);
|
||||
} else {
|
||||
this.url.query += String.fromCodePoint(buffer[i]);
|
||||
}
|
||||
}
|
||||
|
||||
this.buffer = "";
|
||||
if (c === 35) {
|
||||
this.url.fragment = "";
|
||||
this.state = "fragment";
|
||||
}
|
||||
} else {
|
||||
// TODO: If c is not a URL code point and not "%", parse error.
|
||||
if (c === 37 &&
|
||||
(!isASCIIHex(this.input[this.pointer + 1]) ||
|
||||
!isASCIIHex(this.input[this.pointer + 2]))) {
|
||||
this.parseError = true;
|
||||
}
|
||||
|
||||
this.buffer += cStr;
|
||||
}
|
||||
|
||||
return true;
|
||||
};
|
||||
|
||||
URLStateMachine.prototype["parse fragment"] = function parseFragment(c) {
|
||||
if (isNaN(c)) { // do nothing
|
||||
} else if (c === 0x0) {
|
||||
this.parseError = true;
|
||||
} else {
|
||||
// TODO: If c is not a URL code point and not "%", parse error.
|
||||
if (c === 37 &&
|
||||
(!isASCIIHex(this.input[this.pointer + 1]) ||
|
||||
!isASCIIHex(this.input[this.pointer + 2]))) {
|
||||
this.parseError = true;
|
||||
}
|
||||
|
||||
this.url.fragment += percentEncodeChar(c, isC0ControlPercentEncode);
|
||||
}
|
||||
|
||||
return true;
|
||||
};
|
||||
|
||||
function serializeURL(url, excludeFragment) {
|
||||
let output = url.scheme + ":";
|
||||
if (url.host !== null) {
|
||||
output += "//";
|
||||
|
||||
if (url.username !== "" || url.password !== "") {
|
||||
output += url.username;
|
||||
if (url.password !== "") {
|
||||
output += ":" + url.password;
|
||||
}
|
||||
output += "@";
|
||||
}
|
||||
|
||||
output += serializeHost(url.host);
|
||||
|
||||
if (url.port !== null) {
|
||||
output += ":" + url.port;
|
||||
}
|
||||
} else if (url.host === null && url.scheme === "file") {
|
||||
output += "//";
|
||||
}
|
||||
|
||||
if (url.cannotBeABaseURL) {
|
||||
output += url.path[0];
|
||||
} else {
|
||||
for (const string of url.path) {
|
||||
output += "/" + string;
|
||||
}
|
||||
}
|
||||
|
||||
if (url.query !== null) {
|
||||
output += "?" + url.query;
|
||||
}
|
||||
|
||||
if (!excludeFragment && url.fragment !== null) {
|
||||
output += "#" + url.fragment;
|
||||
}
|
||||
|
||||
return output;
|
||||
}
|
||||
|
||||
function serializeOrigin(tuple) {
|
||||
let result = tuple.scheme + "://";
|
||||
result += serializeHost(tuple.host);
|
||||
|
||||
if (tuple.port !== null) {
|
||||
result += ":" + tuple.port;
|
||||
}
|
||||
|
||||
return result;
|
||||
}
|
||||
|
||||
module.exports.serializeURL = serializeURL;
|
||||
|
||||
module.exports.serializeURLOrigin = function (url) {
|
||||
// https://url.spec.whatwg.org/#concept-url-origin
|
||||
switch (url.scheme) {
|
||||
case "blob":
|
||||
try {
|
||||
return module.exports.serializeURLOrigin(module.exports.parseURL(url.path[0]));
|
||||
} catch (e) {
|
||||
// serializing an opaque origin returns "null"
|
||||
return "null";
|
||||
}
|
||||
case "ftp":
|
||||
case "gopher":
|
||||
case "http":
|
||||
case "https":
|
||||
case "ws":
|
||||
case "wss":
|
||||
return serializeOrigin({
|
||||
scheme: url.scheme,
|
||||
host: url.host,
|
||||
port: url.port
|
||||
});
|
||||
case "file":
|
||||
// spec says "exercise to the reader", chrome says "file://"
|
||||
return "file://";
|
||||
default:
|
||||
// serializing an opaque origin returns "null"
|
||||
return "null";
|
||||
}
|
||||
};
|
||||
|
||||
module.exports.basicURLParse = function (input, options) {
|
||||
if (options === undefined) {
|
||||
options = {};
|
||||
}
|
||||
|
||||
const usm = new URLStateMachine(input, options.baseURL, options.encodingOverride, options.url, options.stateOverride);
|
||||
if (usm.failure) {
|
||||
return "failure";
|
||||
}
|
||||
|
||||
return usm.url;
|
||||
};
|
||||
|
||||
module.exports.setTheUsername = function (url, username) {
|
||||
url.username = "";
|
||||
const decoded = punycode.ucs2.decode(username);
|
||||
for (let i = 0; i < decoded.length; ++i) {
|
||||
url.username += percentEncodeChar(decoded[i], isUserinfoPercentEncode);
|
||||
}
|
||||
};
|
||||
|
||||
module.exports.setThePassword = function (url, password) {
|
||||
url.password = "";
|
||||
const decoded = punycode.ucs2.decode(password);
|
||||
for (let i = 0; i < decoded.length; ++i) {
|
||||
url.password += percentEncodeChar(decoded[i], isUserinfoPercentEncode);
|
||||
}
|
||||
};
|
||||
|
||||
module.exports.serializeHost = serializeHost;
|
||||
|
||||
module.exports.cannotHaveAUsernamePasswordPort = cannotHaveAUsernamePasswordPort;
|
||||
|
||||
module.exports.serializeInteger = function (integer) {
|
||||
return String(integer);
|
||||
};
|
||||
|
||||
module.exports.parseURL = function (input, options) {
|
||||
if (options === undefined) {
|
||||
options = {};
|
||||
}
|
||||
|
||||
// We don't handle blobs, so this just delegates:
|
||||
return module.exports.basicURLParse(input, { baseURL: options.baseURL, encodingOverride: options.encodingOverride });
|
||||
};
|
||||
|
||||
|
||||
/***/ }),
|
||||
@ -60457,12 +60457,12 @@ const getPackageManagerInfo = (packageManager) => __awaiter(void 0, void 0, void
|
||||
});
|
||||
exports.getPackageManagerInfo = getPackageManagerInfo;
|
||||
const getCacheDirectoryPath = (packageManagerInfo) => __awaiter(void 0, void 0, void 0, function* () {
|
||||
let pathList = yield Promise.all(packageManagerInfo.cacheFolderCommandList.map(command => exports.getCommandOutput(command)));
|
||||
const emptyPaths = pathList.filter(item => !item);
|
||||
if (emptyPaths.length) {
|
||||
const pathList = yield Promise.all(packageManagerInfo.cacheFolderCommandList.map(command => exports.getCommandOutput(command)));
|
||||
const cachePaths = pathList.filter(item => item);
|
||||
if (!cachePaths.length) {
|
||||
throw new Error(`Could not get cache folder paths.`);
|
||||
}
|
||||
return pathList;
|
||||
return cachePaths;
|
||||
});
|
||||
exports.getCacheDirectoryPath = getCacheDirectoryPath;
|
||||
function isGhes() {
|
||||
@ -60471,16 +60471,15 @@ function isGhes() {
|
||||
}
|
||||
exports.isGhes = isGhes;
|
||||
function isCacheFeatureAvailable() {
|
||||
if (!cache.isFeatureAvailable()) {
|
||||
if (isGhes()) {
|
||||
throw new Error('Cache action is only supported on GHES version >= 3.5. If you are on version >=3.5 Please check with GHES admin if Actions cache service is enabled or not.');
|
||||
}
|
||||
else {
|
||||
core.warning('The runner was not able to contact the cache service. Caching will be skipped');
|
||||
}
|
||||
if (cache.isFeatureAvailable()) {
|
||||
return true;
|
||||
}
|
||||
if (isGhes()) {
|
||||
core.warning('Cache action is only supported on GHES version >= 3.5. If you are on version >=3.5 Please check with GHES admin if Actions cache service is enabled or not.');
|
||||
return false;
|
||||
}
|
||||
return true;
|
||||
core.warning('The runner was not able to contact the cache service. Caching will be skipped');
|
||||
return false;
|
||||
}
|
||||
exports.isCacheFeatureAvailable = isCacheFeatureAvailable;
|
||||
|
||||
|
||||
5065
dist/setup/index.js
vendored
5065
dist/setup/index.js
vendored
@ -8959,312 +8959,312 @@ exports.AbortSignal = AbortSignal;
|
||||
/***/ 9268:
|
||||
/***/ ((module) => {
|
||||
|
||||
/*! *****************************************************************************
|
||||
Copyright (c) Microsoft Corporation.
|
||||
|
||||
Permission to use, copy, modify, and/or distribute this software for any
|
||||
purpose with or without fee is hereby granted.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
|
||||
REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
|
||||
AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
|
||||
INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
|
||||
LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
|
||||
OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
|
||||
PERFORMANCE OF THIS SOFTWARE.
|
||||
***************************************************************************** */
|
||||
/* global global, define, System, Reflect, Promise */
|
||||
var __extends;
|
||||
var __assign;
|
||||
var __rest;
|
||||
var __decorate;
|
||||
var __param;
|
||||
var __metadata;
|
||||
var __awaiter;
|
||||
var __generator;
|
||||
var __exportStar;
|
||||
var __values;
|
||||
var __read;
|
||||
var __spread;
|
||||
var __spreadArrays;
|
||||
var __spreadArray;
|
||||
var __await;
|
||||
var __asyncGenerator;
|
||||
var __asyncDelegator;
|
||||
var __asyncValues;
|
||||
var __makeTemplateObject;
|
||||
var __importStar;
|
||||
var __importDefault;
|
||||
var __classPrivateFieldGet;
|
||||
var __classPrivateFieldSet;
|
||||
var __createBinding;
|
||||
(function (factory) {
|
||||
var root = typeof global === "object" ? global : typeof self === "object" ? self : typeof this === "object" ? this : {};
|
||||
if (typeof define === "function" && define.amd) {
|
||||
define("tslib", ["exports"], function (exports) { factory(createExporter(root, createExporter(exports))); });
|
||||
}
|
||||
else if ( true && typeof module.exports === "object") {
|
||||
factory(createExporter(root, createExporter(module.exports)));
|
||||
}
|
||||
else {
|
||||
factory(createExporter(root));
|
||||
}
|
||||
function createExporter(exports, previous) {
|
||||
if (exports !== root) {
|
||||
if (typeof Object.create === "function") {
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
}
|
||||
else {
|
||||
exports.__esModule = true;
|
||||
}
|
||||
}
|
||||
return function (id, v) { return exports[id] = previous ? previous(id, v) : v; };
|
||||
}
|
||||
})
|
||||
(function (exporter) {
|
||||
var extendStatics = Object.setPrototypeOf ||
|
||||
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
||||
function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };
|
||||
|
||||
__extends = function (d, b) {
|
||||
if (typeof b !== "function" && b !== null)
|
||||
throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
|
||||
extendStatics(d, b);
|
||||
function __() { this.constructor = d; }
|
||||
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
||||
};
|
||||
|
||||
__assign = Object.assign || function (t) {
|
||||
for (var s, i = 1, n = arguments.length; i < n; i++) {
|
||||
s = arguments[i];
|
||||
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p)) t[p] = s[p];
|
||||
}
|
||||
return t;
|
||||
};
|
||||
|
||||
__rest = function (s, e) {
|
||||
var t = {};
|
||||
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
|
||||
t[p] = s[p];
|
||||
if (s != null && typeof Object.getOwnPropertySymbols === "function")
|
||||
for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
|
||||
if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
|
||||
t[p[i]] = s[p[i]];
|
||||
}
|
||||
return t;
|
||||
};
|
||||
|
||||
__decorate = function (decorators, target, key, desc) {
|
||||
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
||||
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
||||
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
||||
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
||||
};
|
||||
|
||||
__param = function (paramIndex, decorator) {
|
||||
return function (target, key) { decorator(target, key, paramIndex); }
|
||||
};
|
||||
|
||||
__metadata = function (metadataKey, metadataValue) {
|
||||
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(metadataKey, metadataValue);
|
||||
};
|
||||
|
||||
__awaiter = function (thisArg, _arguments, P, generator) {
|
||||
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
||||
return new (P || (P = Promise))(function (resolve, reject) {
|
||||
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
|
||||
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
|
||||
function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
|
||||
step((generator = generator.apply(thisArg, _arguments || [])).next());
|
||||
});
|
||||
};
|
||||
|
||||
__generator = function (thisArg, body) {
|
||||
var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;
|
||||
return g = { next: verb(0), "throw": verb(1), "return": verb(2) }, typeof Symbol === "function" && (g[Symbol.iterator] = function() { return this; }), g;
|
||||
function verb(n) { return function (v) { return step([n, v]); }; }
|
||||
function step(op) {
|
||||
if (f) throw new TypeError("Generator is already executing.");
|
||||
while (_) try {
|
||||
if (f = 1, y && (t = op[0] & 2 ? y["return"] : op[0] ? y["throw"] || ((t = y["return"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t;
|
||||
if (y = 0, t) op = [op[0] & 2, t.value];
|
||||
switch (op[0]) {
|
||||
case 0: case 1: t = op; break;
|
||||
case 4: _.label++; return { value: op[1], done: false };
|
||||
case 5: _.label++; y = op[1]; op = [0]; continue;
|
||||
case 7: op = _.ops.pop(); _.trys.pop(); continue;
|
||||
default:
|
||||
if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }
|
||||
if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }
|
||||
if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }
|
||||
if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }
|
||||
if (t[2]) _.ops.pop();
|
||||
_.trys.pop(); continue;
|
||||
}
|
||||
op = body.call(thisArg, _);
|
||||
} catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }
|
||||
if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };
|
||||
}
|
||||
};
|
||||
|
||||
__exportStar = function(m, o) {
|
||||
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(o, p)) __createBinding(o, m, p);
|
||||
};
|
||||
|
||||
__createBinding = Object.create ? (function(o, m, k, k2) {
|
||||
if (k2 === undefined) k2 = k;
|
||||
Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } });
|
||||
}) : (function(o, m, k, k2) {
|
||||
if (k2 === undefined) k2 = k;
|
||||
o[k2] = m[k];
|
||||
});
|
||||
|
||||
__values = function (o) {
|
||||
var s = typeof Symbol === "function" && Symbol.iterator, m = s && o[s], i = 0;
|
||||
if (m) return m.call(o);
|
||||
if (o && typeof o.length === "number") return {
|
||||
next: function () {
|
||||
if (o && i >= o.length) o = void 0;
|
||||
return { value: o && o[i++], done: !o };
|
||||
}
|
||||
};
|
||||
throw new TypeError(s ? "Object is not iterable." : "Symbol.iterator is not defined.");
|
||||
};
|
||||
|
||||
__read = function (o, n) {
|
||||
var m = typeof Symbol === "function" && o[Symbol.iterator];
|
||||
if (!m) return o;
|
||||
var i = m.call(o), r, ar = [], e;
|
||||
try {
|
||||
while ((n === void 0 || n-- > 0) && !(r = i.next()).done) ar.push(r.value);
|
||||
}
|
||||
catch (error) { e = { error: error }; }
|
||||
finally {
|
||||
try {
|
||||
if (r && !r.done && (m = i["return"])) m.call(i);
|
||||
}
|
||||
finally { if (e) throw e.error; }
|
||||
}
|
||||
return ar;
|
||||
};
|
||||
|
||||
/** @deprecated */
|
||||
__spread = function () {
|
||||
for (var ar = [], i = 0; i < arguments.length; i++)
|
||||
ar = ar.concat(__read(arguments[i]));
|
||||
return ar;
|
||||
};
|
||||
|
||||
/** @deprecated */
|
||||
__spreadArrays = function () {
|
||||
for (var s = 0, i = 0, il = arguments.length; i < il; i++) s += arguments[i].length;
|
||||
for (var r = Array(s), k = 0, i = 0; i < il; i++)
|
||||
for (var a = arguments[i], j = 0, jl = a.length; j < jl; j++, k++)
|
||||
r[k] = a[j];
|
||||
return r;
|
||||
};
|
||||
|
||||
__spreadArray = function (to, from, pack) {
|
||||
if (pack || arguments.length === 2) for (var i = 0, l = from.length, ar; i < l; i++) {
|
||||
if (ar || !(i in from)) {
|
||||
if (!ar) ar = Array.prototype.slice.call(from, 0, i);
|
||||
ar[i] = from[i];
|
||||
}
|
||||
}
|
||||
return to.concat(ar || Array.prototype.slice.call(from));
|
||||
};
|
||||
|
||||
__await = function (v) {
|
||||
return this instanceof __await ? (this.v = v, this) : new __await(v);
|
||||
};
|
||||
|
||||
__asyncGenerator = function (thisArg, _arguments, generator) {
|
||||
if (!Symbol.asyncIterator) throw new TypeError("Symbol.asyncIterator is not defined.");
|
||||
var g = generator.apply(thisArg, _arguments || []), i, q = [];
|
||||
return i = {}, verb("next"), verb("throw"), verb("return"), i[Symbol.asyncIterator] = function () { return this; }, i;
|
||||
function verb(n) { if (g[n]) i[n] = function (v) { return new Promise(function (a, b) { q.push([n, v, a, b]) > 1 || resume(n, v); }); }; }
|
||||
function resume(n, v) { try { step(g[n](v)); } catch (e) { settle(q[0][3], e); } }
|
||||
function step(r) { r.value instanceof __await ? Promise.resolve(r.value.v).then(fulfill, reject) : settle(q[0][2], r); }
|
||||
function fulfill(value) { resume("next", value); }
|
||||
function reject(value) { resume("throw", value); }
|
||||
function settle(f, v) { if (f(v), q.shift(), q.length) resume(q[0][0], q[0][1]); }
|
||||
};
|
||||
|
||||
__asyncDelegator = function (o) {
|
||||
var i, p;
|
||||
return i = {}, verb("next"), verb("throw", function (e) { throw e; }), verb("return"), i[Symbol.iterator] = function () { return this; }, i;
|
||||
function verb(n, f) { i[n] = o[n] ? function (v) { return (p = !p) ? { value: __await(o[n](v)), done: n === "return" } : f ? f(v) : v; } : f; }
|
||||
};
|
||||
|
||||
__asyncValues = function (o) {
|
||||
if (!Symbol.asyncIterator) throw new TypeError("Symbol.asyncIterator is not defined.");
|
||||
var m = o[Symbol.asyncIterator], i;
|
||||
return m ? m.call(o) : (o = typeof __values === "function" ? __values(o) : o[Symbol.iterator](), i = {}, verb("next"), verb("throw"), verb("return"), i[Symbol.asyncIterator] = function () { return this; }, i);
|
||||
function verb(n) { i[n] = o[n] && function (v) { return new Promise(function (resolve, reject) { v = o[n](v), settle(resolve, reject, v.done, v.value); }); }; }
|
||||
function settle(resolve, reject, d, v) { Promise.resolve(v).then(function(v) { resolve({ value: v, done: d }); }, reject); }
|
||||
};
|
||||
|
||||
__makeTemplateObject = function (cooked, raw) {
|
||||
if (Object.defineProperty) { Object.defineProperty(cooked, "raw", { value: raw }); } else { cooked.raw = raw; }
|
||||
return cooked;
|
||||
};
|
||||
|
||||
var __setModuleDefault = Object.create ? (function(o, v) {
|
||||
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
||||
}) : function(o, v) {
|
||||
o["default"] = v;
|
||||
};
|
||||
|
||||
__importStar = function (mod) {
|
||||
if (mod && mod.__esModule) return mod;
|
||||
var result = {};
|
||||
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
||||
__setModuleDefault(result, mod);
|
||||
return result;
|
||||
};
|
||||
|
||||
__importDefault = function (mod) {
|
||||
return (mod && mod.__esModule) ? mod : { "default": mod };
|
||||
};
|
||||
|
||||
__classPrivateFieldGet = function (receiver, state, kind, f) {
|
||||
if (kind === "a" && !f) throw new TypeError("Private accessor was defined without a getter");
|
||||
if (typeof state === "function" ? receiver !== state || !f : !state.has(receiver)) throw new TypeError("Cannot read private member from an object whose class did not declare it");
|
||||
return kind === "m" ? f : kind === "a" ? f.call(receiver) : f ? f.value : state.get(receiver);
|
||||
};
|
||||
|
||||
__classPrivateFieldSet = function (receiver, state, value, kind, f) {
|
||||
if (kind === "m") throw new TypeError("Private method is not writable");
|
||||
if (kind === "a" && !f) throw new TypeError("Private accessor was defined without a setter");
|
||||
if (typeof state === "function" ? receiver !== state || !f : !state.has(receiver)) throw new TypeError("Cannot write private member to an object whose class did not declare it");
|
||||
return (kind === "a" ? f.call(receiver, value) : f ? f.value = value : state.set(receiver, value)), value;
|
||||
};
|
||||
|
||||
exporter("__extends", __extends);
|
||||
exporter("__assign", __assign);
|
||||
exporter("__rest", __rest);
|
||||
exporter("__decorate", __decorate);
|
||||
exporter("__param", __param);
|
||||
exporter("__metadata", __metadata);
|
||||
exporter("__awaiter", __awaiter);
|
||||
exporter("__generator", __generator);
|
||||
exporter("__exportStar", __exportStar);
|
||||
exporter("__createBinding", __createBinding);
|
||||
exporter("__values", __values);
|
||||
exporter("__read", __read);
|
||||
exporter("__spread", __spread);
|
||||
exporter("__spreadArrays", __spreadArrays);
|
||||
exporter("__spreadArray", __spreadArray);
|
||||
exporter("__await", __await);
|
||||
exporter("__asyncGenerator", __asyncGenerator);
|
||||
exporter("__asyncDelegator", __asyncDelegator);
|
||||
exporter("__asyncValues", __asyncValues);
|
||||
exporter("__makeTemplateObject", __makeTemplateObject);
|
||||
exporter("__importStar", __importStar);
|
||||
exporter("__importDefault", __importDefault);
|
||||
exporter("__classPrivateFieldGet", __classPrivateFieldGet);
|
||||
exporter("__classPrivateFieldSet", __classPrivateFieldSet);
|
||||
});
|
||||
/*! *****************************************************************************
|
||||
Copyright (c) Microsoft Corporation.
|
||||
|
||||
Permission to use, copy, modify, and/or distribute this software for any
|
||||
purpose with or without fee is hereby granted.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
|
||||
REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
|
||||
AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
|
||||
INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
|
||||
LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
|
||||
OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
|
||||
PERFORMANCE OF THIS SOFTWARE.
|
||||
***************************************************************************** */
|
||||
/* global global, define, System, Reflect, Promise */
|
||||
var __extends;
|
||||
var __assign;
|
||||
var __rest;
|
||||
var __decorate;
|
||||
var __param;
|
||||
var __metadata;
|
||||
var __awaiter;
|
||||
var __generator;
|
||||
var __exportStar;
|
||||
var __values;
|
||||
var __read;
|
||||
var __spread;
|
||||
var __spreadArrays;
|
||||
var __spreadArray;
|
||||
var __await;
|
||||
var __asyncGenerator;
|
||||
var __asyncDelegator;
|
||||
var __asyncValues;
|
||||
var __makeTemplateObject;
|
||||
var __importStar;
|
||||
var __importDefault;
|
||||
var __classPrivateFieldGet;
|
||||
var __classPrivateFieldSet;
|
||||
var __createBinding;
|
||||
(function (factory) {
|
||||
var root = typeof global === "object" ? global : typeof self === "object" ? self : typeof this === "object" ? this : {};
|
||||
if (typeof define === "function" && define.amd) {
|
||||
define("tslib", ["exports"], function (exports) { factory(createExporter(root, createExporter(exports))); });
|
||||
}
|
||||
else if ( true && typeof module.exports === "object") {
|
||||
factory(createExporter(root, createExporter(module.exports)));
|
||||
}
|
||||
else {
|
||||
factory(createExporter(root));
|
||||
}
|
||||
function createExporter(exports, previous) {
|
||||
if (exports !== root) {
|
||||
if (typeof Object.create === "function") {
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
}
|
||||
else {
|
||||
exports.__esModule = true;
|
||||
}
|
||||
}
|
||||
return function (id, v) { return exports[id] = previous ? previous(id, v) : v; };
|
||||
}
|
||||
})
|
||||
(function (exporter) {
|
||||
var extendStatics = Object.setPrototypeOf ||
|
||||
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
||||
function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };
|
||||
|
||||
__extends = function (d, b) {
|
||||
if (typeof b !== "function" && b !== null)
|
||||
throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
|
||||
extendStatics(d, b);
|
||||
function __() { this.constructor = d; }
|
||||
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
||||
};
|
||||
|
||||
__assign = Object.assign || function (t) {
|
||||
for (var s, i = 1, n = arguments.length; i < n; i++) {
|
||||
s = arguments[i];
|
||||
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p)) t[p] = s[p];
|
||||
}
|
||||
return t;
|
||||
};
|
||||
|
||||
__rest = function (s, e) {
|
||||
var t = {};
|
||||
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
|
||||
t[p] = s[p];
|
||||
if (s != null && typeof Object.getOwnPropertySymbols === "function")
|
||||
for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
|
||||
if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
|
||||
t[p[i]] = s[p[i]];
|
||||
}
|
||||
return t;
|
||||
};
|
||||
|
||||
__decorate = function (decorators, target, key, desc) {
|
||||
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
||||
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
||||
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
||||
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
||||
};
|
||||
|
||||
__param = function (paramIndex, decorator) {
|
||||
return function (target, key) { decorator(target, key, paramIndex); }
|
||||
};
|
||||
|
||||
__metadata = function (metadataKey, metadataValue) {
|
||||
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(metadataKey, metadataValue);
|
||||
};
|
||||
|
||||
__awaiter = function (thisArg, _arguments, P, generator) {
|
||||
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
||||
return new (P || (P = Promise))(function (resolve, reject) {
|
||||
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
|
||||
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
|
||||
function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
|
||||
step((generator = generator.apply(thisArg, _arguments || [])).next());
|
||||
});
|
||||
};
|
||||
|
||||
__generator = function (thisArg, body) {
|
||||
var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;
|
||||
return g = { next: verb(0), "throw": verb(1), "return": verb(2) }, typeof Symbol === "function" && (g[Symbol.iterator] = function() { return this; }), g;
|
||||
function verb(n) { return function (v) { return step([n, v]); }; }
|
||||
function step(op) {
|
||||
if (f) throw new TypeError("Generator is already executing.");
|
||||
while (_) try {
|
||||
if (f = 1, y && (t = op[0] & 2 ? y["return"] : op[0] ? y["throw"] || ((t = y["return"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t;
|
||||
if (y = 0, t) op = [op[0] & 2, t.value];
|
||||
switch (op[0]) {
|
||||
case 0: case 1: t = op; break;
|
||||
case 4: _.label++; return { value: op[1], done: false };
|
||||
case 5: _.label++; y = op[1]; op = [0]; continue;
|
||||
case 7: op = _.ops.pop(); _.trys.pop(); continue;
|
||||
default:
|
||||
if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }
|
||||
if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }
|
||||
if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }
|
||||
if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }
|
||||
if (t[2]) _.ops.pop();
|
||||
_.trys.pop(); continue;
|
||||
}
|
||||
op = body.call(thisArg, _);
|
||||
} catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }
|
||||
if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };
|
||||
}
|
||||
};
|
||||
|
||||
__exportStar = function(m, o) {
|
||||
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(o, p)) __createBinding(o, m, p);
|
||||
};
|
||||
|
||||
__createBinding = Object.create ? (function(o, m, k, k2) {
|
||||
if (k2 === undefined) k2 = k;
|
||||
Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } });
|
||||
}) : (function(o, m, k, k2) {
|
||||
if (k2 === undefined) k2 = k;
|
||||
o[k2] = m[k];
|
||||
});
|
||||
|
||||
__values = function (o) {
|
||||
var s = typeof Symbol === "function" && Symbol.iterator, m = s && o[s], i = 0;
|
||||
if (m) return m.call(o);
|
||||
if (o && typeof o.length === "number") return {
|
||||
next: function () {
|
||||
if (o && i >= o.length) o = void 0;
|
||||
return { value: o && o[i++], done: !o };
|
||||
}
|
||||
};
|
||||
throw new TypeError(s ? "Object is not iterable." : "Symbol.iterator is not defined.");
|
||||
};
|
||||
|
||||
__read = function (o, n) {
|
||||
var m = typeof Symbol === "function" && o[Symbol.iterator];
|
||||
if (!m) return o;
|
||||
var i = m.call(o), r, ar = [], e;
|
||||
try {
|
||||
while ((n === void 0 || n-- > 0) && !(r = i.next()).done) ar.push(r.value);
|
||||
}
|
||||
catch (error) { e = { error: error }; }
|
||||
finally {
|
||||
try {
|
||||
if (r && !r.done && (m = i["return"])) m.call(i);
|
||||
}
|
||||
finally { if (e) throw e.error; }
|
||||
}
|
||||
return ar;
|
||||
};
|
||||
|
||||
/** @deprecated */
|
||||
__spread = function () {
|
||||
for (var ar = [], i = 0; i < arguments.length; i++)
|
||||
ar = ar.concat(__read(arguments[i]));
|
||||
return ar;
|
||||
};
|
||||
|
||||
/** @deprecated */
|
||||
__spreadArrays = function () {
|
||||
for (var s = 0, i = 0, il = arguments.length; i < il; i++) s += arguments[i].length;
|
||||
for (var r = Array(s), k = 0, i = 0; i < il; i++)
|
||||
for (var a = arguments[i], j = 0, jl = a.length; j < jl; j++, k++)
|
||||
r[k] = a[j];
|
||||
return r;
|
||||
};
|
||||
|
||||
__spreadArray = function (to, from, pack) {
|
||||
if (pack || arguments.length === 2) for (var i = 0, l = from.length, ar; i < l; i++) {
|
||||
if (ar || !(i in from)) {
|
||||
if (!ar) ar = Array.prototype.slice.call(from, 0, i);
|
||||
ar[i] = from[i];
|
||||
}
|
||||
}
|
||||
return to.concat(ar || Array.prototype.slice.call(from));
|
||||
};
|
||||
|
||||
__await = function (v) {
|
||||
return this instanceof __await ? (this.v = v, this) : new __await(v);
|
||||
};
|
||||
|
||||
__asyncGenerator = function (thisArg, _arguments, generator) {
|
||||
if (!Symbol.asyncIterator) throw new TypeError("Symbol.asyncIterator is not defined.");
|
||||
var g = generator.apply(thisArg, _arguments || []), i, q = [];
|
||||
return i = {}, verb("next"), verb("throw"), verb("return"), i[Symbol.asyncIterator] = function () { return this; }, i;
|
||||
function verb(n) { if (g[n]) i[n] = function (v) { return new Promise(function (a, b) { q.push([n, v, a, b]) > 1 || resume(n, v); }); }; }
|
||||
function resume(n, v) { try { step(g[n](v)); } catch (e) { settle(q[0][3], e); } }
|
||||
function step(r) { r.value instanceof __await ? Promise.resolve(r.value.v).then(fulfill, reject) : settle(q[0][2], r); }
|
||||
function fulfill(value) { resume("next", value); }
|
||||
function reject(value) { resume("throw", value); }
|
||||
function settle(f, v) { if (f(v), q.shift(), q.length) resume(q[0][0], q[0][1]); }
|
||||
};
|
||||
|
||||
__asyncDelegator = function (o) {
|
||||
var i, p;
|
||||
return i = {}, verb("next"), verb("throw", function (e) { throw e; }), verb("return"), i[Symbol.iterator] = function () { return this; }, i;
|
||||
function verb(n, f) { i[n] = o[n] ? function (v) { return (p = !p) ? { value: __await(o[n](v)), done: n === "return" } : f ? f(v) : v; } : f; }
|
||||
};
|
||||
|
||||
__asyncValues = function (o) {
|
||||
if (!Symbol.asyncIterator) throw new TypeError("Symbol.asyncIterator is not defined.");
|
||||
var m = o[Symbol.asyncIterator], i;
|
||||
return m ? m.call(o) : (o = typeof __values === "function" ? __values(o) : o[Symbol.iterator](), i = {}, verb("next"), verb("throw"), verb("return"), i[Symbol.asyncIterator] = function () { return this; }, i);
|
||||
function verb(n) { i[n] = o[n] && function (v) { return new Promise(function (resolve, reject) { v = o[n](v), settle(resolve, reject, v.done, v.value); }); }; }
|
||||
function settle(resolve, reject, d, v) { Promise.resolve(v).then(function(v) { resolve({ value: v, done: d }); }, reject); }
|
||||
};
|
||||
|
||||
__makeTemplateObject = function (cooked, raw) {
|
||||
if (Object.defineProperty) { Object.defineProperty(cooked, "raw", { value: raw }); } else { cooked.raw = raw; }
|
||||
return cooked;
|
||||
};
|
||||
|
||||
var __setModuleDefault = Object.create ? (function(o, v) {
|
||||
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
||||
}) : function(o, v) {
|
||||
o["default"] = v;
|
||||
};
|
||||
|
||||
__importStar = function (mod) {
|
||||
if (mod && mod.__esModule) return mod;
|
||||
var result = {};
|
||||
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
||||
__setModuleDefault(result, mod);
|
||||
return result;
|
||||
};
|
||||
|
||||
__importDefault = function (mod) {
|
||||
return (mod && mod.__esModule) ? mod : { "default": mod };
|
||||
};
|
||||
|
||||
__classPrivateFieldGet = function (receiver, state, kind, f) {
|
||||
if (kind === "a" && !f) throw new TypeError("Private accessor was defined without a getter");
|
||||
if (typeof state === "function" ? receiver !== state || !f : !state.has(receiver)) throw new TypeError("Cannot read private member from an object whose class did not declare it");
|
||||
return kind === "m" ? f : kind === "a" ? f.call(receiver) : f ? f.value : state.get(receiver);
|
||||
};
|
||||
|
||||
__classPrivateFieldSet = function (receiver, state, value, kind, f) {
|
||||
if (kind === "m") throw new TypeError("Private method is not writable");
|
||||
if (kind === "a" && !f) throw new TypeError("Private accessor was defined without a setter");
|
||||
if (typeof state === "function" ? receiver !== state || !f : !state.has(receiver)) throw new TypeError("Cannot write private member to an object whose class did not declare it");
|
||||
return (kind === "a" ? f.call(receiver, value) : f ? f.value = value : state.set(receiver, value)), value;
|
||||
};
|
||||
|
||||
exporter("__extends", __extends);
|
||||
exporter("__assign", __assign);
|
||||
exporter("__rest", __rest);
|
||||
exporter("__decorate", __decorate);
|
||||
exporter("__param", __param);
|
||||
exporter("__metadata", __metadata);
|
||||
exporter("__awaiter", __awaiter);
|
||||
exporter("__generator", __generator);
|
||||
exporter("__exportStar", __exportStar);
|
||||
exporter("__createBinding", __createBinding);
|
||||
exporter("__values", __values);
|
||||
exporter("__read", __read);
|
||||
exporter("__spread", __spread);
|
||||
exporter("__spreadArrays", __spreadArrays);
|
||||
exporter("__spreadArray", __spreadArray);
|
||||
exporter("__await", __await);
|
||||
exporter("__asyncGenerator", __asyncGenerator);
|
||||
exporter("__asyncDelegator", __asyncDelegator);
|
||||
exporter("__asyncValues", __asyncValues);
|
||||
exporter("__makeTemplateObject", __makeTemplateObject);
|
||||
exporter("__importStar", __importStar);
|
||||
exporter("__importDefault", __importDefault);
|
||||
exporter("__classPrivateFieldGet", __classPrivateFieldGet);
|
||||
exporter("__classPrivateFieldSet", __classPrivateFieldSet);
|
||||
});
|
||||
|
||||
|
||||
/***/ }),
|
||||
@ -17743,312 +17743,312 @@ module.exports = '4.0.0'
|
||||
/***/ 2107:
|
||||
/***/ ((module) => {
|
||||
|
||||
/*! *****************************************************************************
|
||||
Copyright (c) Microsoft Corporation.
|
||||
|
||||
Permission to use, copy, modify, and/or distribute this software for any
|
||||
purpose with or without fee is hereby granted.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
|
||||
REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
|
||||
AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
|
||||
INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
|
||||
LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
|
||||
OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
|
||||
PERFORMANCE OF THIS SOFTWARE.
|
||||
***************************************************************************** */
|
||||
/* global global, define, System, Reflect, Promise */
|
||||
var __extends;
|
||||
var __assign;
|
||||
var __rest;
|
||||
var __decorate;
|
||||
var __param;
|
||||
var __metadata;
|
||||
var __awaiter;
|
||||
var __generator;
|
||||
var __exportStar;
|
||||
var __values;
|
||||
var __read;
|
||||
var __spread;
|
||||
var __spreadArrays;
|
||||
var __spreadArray;
|
||||
var __await;
|
||||
var __asyncGenerator;
|
||||
var __asyncDelegator;
|
||||
var __asyncValues;
|
||||
var __makeTemplateObject;
|
||||
var __importStar;
|
||||
var __importDefault;
|
||||
var __classPrivateFieldGet;
|
||||
var __classPrivateFieldSet;
|
||||
var __createBinding;
|
||||
(function (factory) {
|
||||
var root = typeof global === "object" ? global : typeof self === "object" ? self : typeof this === "object" ? this : {};
|
||||
if (typeof define === "function" && define.amd) {
|
||||
define("tslib", ["exports"], function (exports) { factory(createExporter(root, createExporter(exports))); });
|
||||
}
|
||||
else if ( true && typeof module.exports === "object") {
|
||||
factory(createExporter(root, createExporter(module.exports)));
|
||||
}
|
||||
else {
|
||||
factory(createExporter(root));
|
||||
}
|
||||
function createExporter(exports, previous) {
|
||||
if (exports !== root) {
|
||||
if (typeof Object.create === "function") {
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
}
|
||||
else {
|
||||
exports.__esModule = true;
|
||||
}
|
||||
}
|
||||
return function (id, v) { return exports[id] = previous ? previous(id, v) : v; };
|
||||
}
|
||||
})
|
||||
(function (exporter) {
|
||||
var extendStatics = Object.setPrototypeOf ||
|
||||
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
||||
function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };
|
||||
|
||||
__extends = function (d, b) {
|
||||
if (typeof b !== "function" && b !== null)
|
||||
throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
|
||||
extendStatics(d, b);
|
||||
function __() { this.constructor = d; }
|
||||
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
||||
};
|
||||
|
||||
__assign = Object.assign || function (t) {
|
||||
for (var s, i = 1, n = arguments.length; i < n; i++) {
|
||||
s = arguments[i];
|
||||
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p)) t[p] = s[p];
|
||||
}
|
||||
return t;
|
||||
};
|
||||
|
||||
__rest = function (s, e) {
|
||||
var t = {};
|
||||
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
|
||||
t[p] = s[p];
|
||||
if (s != null && typeof Object.getOwnPropertySymbols === "function")
|
||||
for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
|
||||
if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
|
||||
t[p[i]] = s[p[i]];
|
||||
}
|
||||
return t;
|
||||
};
|
||||
|
||||
__decorate = function (decorators, target, key, desc) {
|
||||
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
||||
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
||||
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
||||
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
||||
};
|
||||
|
||||
__param = function (paramIndex, decorator) {
|
||||
return function (target, key) { decorator(target, key, paramIndex); }
|
||||
};
|
||||
|
||||
__metadata = function (metadataKey, metadataValue) {
|
||||
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(metadataKey, metadataValue);
|
||||
};
|
||||
|
||||
__awaiter = function (thisArg, _arguments, P, generator) {
|
||||
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
||||
return new (P || (P = Promise))(function (resolve, reject) {
|
||||
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
|
||||
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
|
||||
function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
|
||||
step((generator = generator.apply(thisArg, _arguments || [])).next());
|
||||
});
|
||||
};
|
||||
|
||||
__generator = function (thisArg, body) {
|
||||
var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;
|
||||
return g = { next: verb(0), "throw": verb(1), "return": verb(2) }, typeof Symbol === "function" && (g[Symbol.iterator] = function() { return this; }), g;
|
||||
function verb(n) { return function (v) { return step([n, v]); }; }
|
||||
function step(op) {
|
||||
if (f) throw new TypeError("Generator is already executing.");
|
||||
while (_) try {
|
||||
if (f = 1, y && (t = op[0] & 2 ? y["return"] : op[0] ? y["throw"] || ((t = y["return"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t;
|
||||
if (y = 0, t) op = [op[0] & 2, t.value];
|
||||
switch (op[0]) {
|
||||
case 0: case 1: t = op; break;
|
||||
case 4: _.label++; return { value: op[1], done: false };
|
||||
case 5: _.label++; y = op[1]; op = [0]; continue;
|
||||
case 7: op = _.ops.pop(); _.trys.pop(); continue;
|
||||
default:
|
||||
if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }
|
||||
if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }
|
||||
if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }
|
||||
if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }
|
||||
if (t[2]) _.ops.pop();
|
||||
_.trys.pop(); continue;
|
||||
}
|
||||
op = body.call(thisArg, _);
|
||||
} catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }
|
||||
if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };
|
||||
}
|
||||
};
|
||||
|
||||
__exportStar = function(m, o) {
|
||||
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(o, p)) __createBinding(o, m, p);
|
||||
};
|
||||
|
||||
__createBinding = Object.create ? (function(o, m, k, k2) {
|
||||
if (k2 === undefined) k2 = k;
|
||||
Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } });
|
||||
}) : (function(o, m, k, k2) {
|
||||
if (k2 === undefined) k2 = k;
|
||||
o[k2] = m[k];
|
||||
});
|
||||
|
||||
__values = function (o) {
|
||||
var s = typeof Symbol === "function" && Symbol.iterator, m = s && o[s], i = 0;
|
||||
if (m) return m.call(o);
|
||||
if (o && typeof o.length === "number") return {
|
||||
next: function () {
|
||||
if (o && i >= o.length) o = void 0;
|
||||
return { value: o && o[i++], done: !o };
|
||||
}
|
||||
};
|
||||
throw new TypeError(s ? "Object is not iterable." : "Symbol.iterator is not defined.");
|
||||
};
|
||||
|
||||
__read = function (o, n) {
|
||||
var m = typeof Symbol === "function" && o[Symbol.iterator];
|
||||
if (!m) return o;
|
||||
var i = m.call(o), r, ar = [], e;
|
||||
try {
|
||||
while ((n === void 0 || n-- > 0) && !(r = i.next()).done) ar.push(r.value);
|
||||
}
|
||||
catch (error) { e = { error: error }; }
|
||||
finally {
|
||||
try {
|
||||
if (r && !r.done && (m = i["return"])) m.call(i);
|
||||
}
|
||||
finally { if (e) throw e.error; }
|
||||
}
|
||||
return ar;
|
||||
};
|
||||
|
||||
/** @deprecated */
|
||||
__spread = function () {
|
||||
for (var ar = [], i = 0; i < arguments.length; i++)
|
||||
ar = ar.concat(__read(arguments[i]));
|
||||
return ar;
|
||||
};
|
||||
|
||||
/** @deprecated */
|
||||
__spreadArrays = function () {
|
||||
for (var s = 0, i = 0, il = arguments.length; i < il; i++) s += arguments[i].length;
|
||||
for (var r = Array(s), k = 0, i = 0; i < il; i++)
|
||||
for (var a = arguments[i], j = 0, jl = a.length; j < jl; j++, k++)
|
||||
r[k] = a[j];
|
||||
return r;
|
||||
};
|
||||
|
||||
__spreadArray = function (to, from, pack) {
|
||||
if (pack || arguments.length === 2) for (var i = 0, l = from.length, ar; i < l; i++) {
|
||||
if (ar || !(i in from)) {
|
||||
if (!ar) ar = Array.prototype.slice.call(from, 0, i);
|
||||
ar[i] = from[i];
|
||||
}
|
||||
}
|
||||
return to.concat(ar || Array.prototype.slice.call(from));
|
||||
};
|
||||
|
||||
__await = function (v) {
|
||||
return this instanceof __await ? (this.v = v, this) : new __await(v);
|
||||
};
|
||||
|
||||
__asyncGenerator = function (thisArg, _arguments, generator) {
|
||||
if (!Symbol.asyncIterator) throw new TypeError("Symbol.asyncIterator is not defined.");
|
||||
var g = generator.apply(thisArg, _arguments || []), i, q = [];
|
||||
return i = {}, verb("next"), verb("throw"), verb("return"), i[Symbol.asyncIterator] = function () { return this; }, i;
|
||||
function verb(n) { if (g[n]) i[n] = function (v) { return new Promise(function (a, b) { q.push([n, v, a, b]) > 1 || resume(n, v); }); }; }
|
||||
function resume(n, v) { try { step(g[n](v)); } catch (e) { settle(q[0][3], e); } }
|
||||
function step(r) { r.value instanceof __await ? Promise.resolve(r.value.v).then(fulfill, reject) : settle(q[0][2], r); }
|
||||
function fulfill(value) { resume("next", value); }
|
||||
function reject(value) { resume("throw", value); }
|
||||
function settle(f, v) { if (f(v), q.shift(), q.length) resume(q[0][0], q[0][1]); }
|
||||
};
|
||||
|
||||
__asyncDelegator = function (o) {
|
||||
var i, p;
|
||||
return i = {}, verb("next"), verb("throw", function (e) { throw e; }), verb("return"), i[Symbol.iterator] = function () { return this; }, i;
|
||||
function verb(n, f) { i[n] = o[n] ? function (v) { return (p = !p) ? { value: __await(o[n](v)), done: n === "return" } : f ? f(v) : v; } : f; }
|
||||
};
|
||||
|
||||
__asyncValues = function (o) {
|
||||
if (!Symbol.asyncIterator) throw new TypeError("Symbol.asyncIterator is not defined.");
|
||||
var m = o[Symbol.asyncIterator], i;
|
||||
return m ? m.call(o) : (o = typeof __values === "function" ? __values(o) : o[Symbol.iterator](), i = {}, verb("next"), verb("throw"), verb("return"), i[Symbol.asyncIterator] = function () { return this; }, i);
|
||||
function verb(n) { i[n] = o[n] && function (v) { return new Promise(function (resolve, reject) { v = o[n](v), settle(resolve, reject, v.done, v.value); }); }; }
|
||||
function settle(resolve, reject, d, v) { Promise.resolve(v).then(function(v) { resolve({ value: v, done: d }); }, reject); }
|
||||
};
|
||||
|
||||
__makeTemplateObject = function (cooked, raw) {
|
||||
if (Object.defineProperty) { Object.defineProperty(cooked, "raw", { value: raw }); } else { cooked.raw = raw; }
|
||||
return cooked;
|
||||
};
|
||||
|
||||
var __setModuleDefault = Object.create ? (function(o, v) {
|
||||
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
||||
}) : function(o, v) {
|
||||
o["default"] = v;
|
||||
};
|
||||
|
||||
__importStar = function (mod) {
|
||||
if (mod && mod.__esModule) return mod;
|
||||
var result = {};
|
||||
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
||||
__setModuleDefault(result, mod);
|
||||
return result;
|
||||
};
|
||||
|
||||
__importDefault = function (mod) {
|
||||
return (mod && mod.__esModule) ? mod : { "default": mod };
|
||||
};
|
||||
|
||||
__classPrivateFieldGet = function (receiver, state, kind, f) {
|
||||
if (kind === "a" && !f) throw new TypeError("Private accessor was defined without a getter");
|
||||
if (typeof state === "function" ? receiver !== state || !f : !state.has(receiver)) throw new TypeError("Cannot read private member from an object whose class did not declare it");
|
||||
return kind === "m" ? f : kind === "a" ? f.call(receiver) : f ? f.value : state.get(receiver);
|
||||
};
|
||||
|
||||
__classPrivateFieldSet = function (receiver, state, value, kind, f) {
|
||||
if (kind === "m") throw new TypeError("Private method is not writable");
|
||||
if (kind === "a" && !f) throw new TypeError("Private accessor was defined without a setter");
|
||||
if (typeof state === "function" ? receiver !== state || !f : !state.has(receiver)) throw new TypeError("Cannot write private member to an object whose class did not declare it");
|
||||
return (kind === "a" ? f.call(receiver, value) : f ? f.value = value : state.set(receiver, value)), value;
|
||||
};
|
||||
|
||||
exporter("__extends", __extends);
|
||||
exporter("__assign", __assign);
|
||||
exporter("__rest", __rest);
|
||||
exporter("__decorate", __decorate);
|
||||
exporter("__param", __param);
|
||||
exporter("__metadata", __metadata);
|
||||
exporter("__awaiter", __awaiter);
|
||||
exporter("__generator", __generator);
|
||||
exporter("__exportStar", __exportStar);
|
||||
exporter("__createBinding", __createBinding);
|
||||
exporter("__values", __values);
|
||||
exporter("__read", __read);
|
||||
exporter("__spread", __spread);
|
||||
exporter("__spreadArrays", __spreadArrays);
|
||||
exporter("__spreadArray", __spreadArray);
|
||||
exporter("__await", __await);
|
||||
exporter("__asyncGenerator", __asyncGenerator);
|
||||
exporter("__asyncDelegator", __asyncDelegator);
|
||||
exporter("__asyncValues", __asyncValues);
|
||||
exporter("__makeTemplateObject", __makeTemplateObject);
|
||||
exporter("__importStar", __importStar);
|
||||
exporter("__importDefault", __importDefault);
|
||||
exporter("__classPrivateFieldGet", __classPrivateFieldGet);
|
||||
exporter("__classPrivateFieldSet", __classPrivateFieldSet);
|
||||
});
|
||||
/*! *****************************************************************************
|
||||
Copyright (c) Microsoft Corporation.
|
||||
|
||||
Permission to use, copy, modify, and/or distribute this software for any
|
||||
purpose with or without fee is hereby granted.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
|
||||
REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
|
||||
AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
|
||||
INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
|
||||
LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
|
||||
OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
|
||||
PERFORMANCE OF THIS SOFTWARE.
|
||||
***************************************************************************** */
|
||||
/* global global, define, System, Reflect, Promise */
|
||||
var __extends;
|
||||
var __assign;
|
||||
var __rest;
|
||||
var __decorate;
|
||||
var __param;
|
||||
var __metadata;
|
||||
var __awaiter;
|
||||
var __generator;
|
||||
var __exportStar;
|
||||
var __values;
|
||||
var __read;
|
||||
var __spread;
|
||||
var __spreadArrays;
|
||||
var __spreadArray;
|
||||
var __await;
|
||||
var __asyncGenerator;
|
||||
var __asyncDelegator;
|
||||
var __asyncValues;
|
||||
var __makeTemplateObject;
|
||||
var __importStar;
|
||||
var __importDefault;
|
||||
var __classPrivateFieldGet;
|
||||
var __classPrivateFieldSet;
|
||||
var __createBinding;
|
||||
(function (factory) {
|
||||
var root = typeof global === "object" ? global : typeof self === "object" ? self : typeof this === "object" ? this : {};
|
||||
if (typeof define === "function" && define.amd) {
|
||||
define("tslib", ["exports"], function (exports) { factory(createExporter(root, createExporter(exports))); });
|
||||
}
|
||||
else if ( true && typeof module.exports === "object") {
|
||||
factory(createExporter(root, createExporter(module.exports)));
|
||||
}
|
||||
else {
|
||||
factory(createExporter(root));
|
||||
}
|
||||
function createExporter(exports, previous) {
|
||||
if (exports !== root) {
|
||||
if (typeof Object.create === "function") {
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
}
|
||||
else {
|
||||
exports.__esModule = true;
|
||||
}
|
||||
}
|
||||
return function (id, v) { return exports[id] = previous ? previous(id, v) : v; };
|
||||
}
|
||||
})
|
||||
(function (exporter) {
|
||||
var extendStatics = Object.setPrototypeOf ||
|
||||
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
||||
function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };
|
||||
|
||||
__extends = function (d, b) {
|
||||
if (typeof b !== "function" && b !== null)
|
||||
throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
|
||||
extendStatics(d, b);
|
||||
function __() { this.constructor = d; }
|
||||
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
||||
};
|
||||
|
||||
__assign = Object.assign || function (t) {
|
||||
for (var s, i = 1, n = arguments.length; i < n; i++) {
|
||||
s = arguments[i];
|
||||
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p)) t[p] = s[p];
|
||||
}
|
||||
return t;
|
||||
};
|
||||
|
||||
__rest = function (s, e) {
|
||||
var t = {};
|
||||
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
|
||||
t[p] = s[p];
|
||||
if (s != null && typeof Object.getOwnPropertySymbols === "function")
|
||||
for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
|
||||
if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
|
||||
t[p[i]] = s[p[i]];
|
||||
}
|
||||
return t;
|
||||
};
|
||||
|
||||
__decorate = function (decorators, target, key, desc) {
|
||||
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
||||
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
||||
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
||||
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
||||
};
|
||||
|
||||
__param = function (paramIndex, decorator) {
|
||||
return function (target, key) { decorator(target, key, paramIndex); }
|
||||
};
|
||||
|
||||
__metadata = function (metadataKey, metadataValue) {
|
||||
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(metadataKey, metadataValue);
|
||||
};
|
||||
|
||||
__awaiter = function (thisArg, _arguments, P, generator) {
|
||||
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
||||
return new (P || (P = Promise))(function (resolve, reject) {
|
||||
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
|
||||
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
|
||||
function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
|
||||
step((generator = generator.apply(thisArg, _arguments || [])).next());
|
||||
});
|
||||
};
|
||||
|
||||
__generator = function (thisArg, body) {
|
||||
var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;
|
||||
return g = { next: verb(0), "throw": verb(1), "return": verb(2) }, typeof Symbol === "function" && (g[Symbol.iterator] = function() { return this; }), g;
|
||||
function verb(n) { return function (v) { return step([n, v]); }; }
|
||||
function step(op) {
|
||||
if (f) throw new TypeError("Generator is already executing.");
|
||||
while (_) try {
|
||||
if (f = 1, y && (t = op[0] & 2 ? y["return"] : op[0] ? y["throw"] || ((t = y["return"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t;
|
||||
if (y = 0, t) op = [op[0] & 2, t.value];
|
||||
switch (op[0]) {
|
||||
case 0: case 1: t = op; break;
|
||||
case 4: _.label++; return { value: op[1], done: false };
|
||||
case 5: _.label++; y = op[1]; op = [0]; continue;
|
||||
case 7: op = _.ops.pop(); _.trys.pop(); continue;
|
||||
default:
|
||||
if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }
|
||||
if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }
|
||||
if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }
|
||||
if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }
|
||||
if (t[2]) _.ops.pop();
|
||||
_.trys.pop(); continue;
|
||||
}
|
||||
op = body.call(thisArg, _);
|
||||
} catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }
|
||||
if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };
|
||||
}
|
||||
};
|
||||
|
||||
__exportStar = function(m, o) {
|
||||
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(o, p)) __createBinding(o, m, p);
|
||||
};
|
||||
|
||||
__createBinding = Object.create ? (function(o, m, k, k2) {
|
||||
if (k2 === undefined) k2 = k;
|
||||
Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } });
|
||||
}) : (function(o, m, k, k2) {
|
||||
if (k2 === undefined) k2 = k;
|
||||
o[k2] = m[k];
|
||||
});
|
||||
|
||||
__values = function (o) {
|
||||
var s = typeof Symbol === "function" && Symbol.iterator, m = s && o[s], i = 0;
|
||||
if (m) return m.call(o);
|
||||
if (o && typeof o.length === "number") return {
|
||||
next: function () {
|
||||
if (o && i >= o.length) o = void 0;
|
||||
return { value: o && o[i++], done: !o };
|
||||
}
|
||||
};
|
||||
throw new TypeError(s ? "Object is not iterable." : "Symbol.iterator is not defined.");
|
||||
};
|
||||
|
||||
__read = function (o, n) {
|
||||
var m = typeof Symbol === "function" && o[Symbol.iterator];
|
||||
if (!m) return o;
|
||||
var i = m.call(o), r, ar = [], e;
|
||||
try {
|
||||
while ((n === void 0 || n-- > 0) && !(r = i.next()).done) ar.push(r.value);
|
||||
}
|
||||
catch (error) { e = { error: error }; }
|
||||
finally {
|
||||
try {
|
||||
if (r && !r.done && (m = i["return"])) m.call(i);
|
||||
}
|
||||
finally { if (e) throw e.error; }
|
||||
}
|
||||
return ar;
|
||||
};
|
||||
|
||||
/** @deprecated */
|
||||
__spread = function () {
|
||||
for (var ar = [], i = 0; i < arguments.length; i++)
|
||||
ar = ar.concat(__read(arguments[i]));
|
||||
return ar;
|
||||
};
|
||||
|
||||
/** @deprecated */
|
||||
__spreadArrays = function () {
|
||||
for (var s = 0, i = 0, il = arguments.length; i < il; i++) s += arguments[i].length;
|
||||
for (var r = Array(s), k = 0, i = 0; i < il; i++)
|
||||
for (var a = arguments[i], j = 0, jl = a.length; j < jl; j++, k++)
|
||||
r[k] = a[j];
|
||||
return r;
|
||||
};
|
||||
|
||||
__spreadArray = function (to, from, pack) {
|
||||
if (pack || arguments.length === 2) for (var i = 0, l = from.length, ar; i < l; i++) {
|
||||
if (ar || !(i in from)) {
|
||||
if (!ar) ar = Array.prototype.slice.call(from, 0, i);
|
||||
ar[i] = from[i];
|
||||
}
|
||||
}
|
||||
return to.concat(ar || Array.prototype.slice.call(from));
|
||||
};
|
||||
|
||||
__await = function (v) {
|
||||
return this instanceof __await ? (this.v = v, this) : new __await(v);
|
||||
};
|
||||
|
||||
__asyncGenerator = function (thisArg, _arguments, generator) {
|
||||
if (!Symbol.asyncIterator) throw new TypeError("Symbol.asyncIterator is not defined.");
|
||||
var g = generator.apply(thisArg, _arguments || []), i, q = [];
|
||||
return i = {}, verb("next"), verb("throw"), verb("return"), i[Symbol.asyncIterator] = function () { return this; }, i;
|
||||
function verb(n) { if (g[n]) i[n] = function (v) { return new Promise(function (a, b) { q.push([n, v, a, b]) > 1 || resume(n, v); }); }; }
|
||||
function resume(n, v) { try { step(g[n](v)); } catch (e) { settle(q[0][3], e); } }
|
||||
function step(r) { r.value instanceof __await ? Promise.resolve(r.value.v).then(fulfill, reject) : settle(q[0][2], r); }
|
||||
function fulfill(value) { resume("next", value); }
|
||||
function reject(value) { resume("throw", value); }
|
||||
function settle(f, v) { if (f(v), q.shift(), q.length) resume(q[0][0], q[0][1]); }
|
||||
};
|
||||
|
||||
__asyncDelegator = function (o) {
|
||||
var i, p;
|
||||
return i = {}, verb("next"), verb("throw", function (e) { throw e; }), verb("return"), i[Symbol.iterator] = function () { return this; }, i;
|
||||
function verb(n, f) { i[n] = o[n] ? function (v) { return (p = !p) ? { value: __await(o[n](v)), done: n === "return" } : f ? f(v) : v; } : f; }
|
||||
};
|
||||
|
||||
__asyncValues = function (o) {
|
||||
if (!Symbol.asyncIterator) throw new TypeError("Symbol.asyncIterator is not defined.");
|
||||
var m = o[Symbol.asyncIterator], i;
|
||||
return m ? m.call(o) : (o = typeof __values === "function" ? __values(o) : o[Symbol.iterator](), i = {}, verb("next"), verb("throw"), verb("return"), i[Symbol.asyncIterator] = function () { return this; }, i);
|
||||
function verb(n) { i[n] = o[n] && function (v) { return new Promise(function (resolve, reject) { v = o[n](v), settle(resolve, reject, v.done, v.value); }); }; }
|
||||
function settle(resolve, reject, d, v) { Promise.resolve(v).then(function(v) { resolve({ value: v, done: d }); }, reject); }
|
||||
};
|
||||
|
||||
__makeTemplateObject = function (cooked, raw) {
|
||||
if (Object.defineProperty) { Object.defineProperty(cooked, "raw", { value: raw }); } else { cooked.raw = raw; }
|
||||
return cooked;
|
||||
};
|
||||
|
||||
var __setModuleDefault = Object.create ? (function(o, v) {
|
||||
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
||||
}) : function(o, v) {
|
||||
o["default"] = v;
|
||||
};
|
||||
|
||||
__importStar = function (mod) {
|
||||
if (mod && mod.__esModule) return mod;
|
||||
var result = {};
|
||||
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
||||
__setModuleDefault(result, mod);
|
||||
return result;
|
||||
};
|
||||
|
||||
__importDefault = function (mod) {
|
||||
return (mod && mod.__esModule) ? mod : { "default": mod };
|
||||
};
|
||||
|
||||
__classPrivateFieldGet = function (receiver, state, kind, f) {
|
||||
if (kind === "a" && !f) throw new TypeError("Private accessor was defined without a getter");
|
||||
if (typeof state === "function" ? receiver !== state || !f : !state.has(receiver)) throw new TypeError("Cannot read private member from an object whose class did not declare it");
|
||||
return kind === "m" ? f : kind === "a" ? f.call(receiver) : f ? f.value : state.get(receiver);
|
||||
};
|
||||
|
||||
__classPrivateFieldSet = function (receiver, state, value, kind, f) {
|
||||
if (kind === "m") throw new TypeError("Private method is not writable");
|
||||
if (kind === "a" && !f) throw new TypeError("Private accessor was defined without a setter");
|
||||
if (typeof state === "function" ? receiver !== state || !f : !state.has(receiver)) throw new TypeError("Cannot write private member to an object whose class did not declare it");
|
||||
return (kind === "a" ? f.call(receiver, value) : f ? f.value = value : state.set(receiver, value)), value;
|
||||
};
|
||||
|
||||
exporter("__extends", __extends);
|
||||
exporter("__assign", __assign);
|
||||
exporter("__rest", __rest);
|
||||
exporter("__decorate", __decorate);
|
||||
exporter("__param", __param);
|
||||
exporter("__metadata", __metadata);
|
||||
exporter("__awaiter", __awaiter);
|
||||
exporter("__generator", __generator);
|
||||
exporter("__exportStar", __exportStar);
|
||||
exporter("__createBinding", __createBinding);
|
||||
exporter("__values", __values);
|
||||
exporter("__read", __read);
|
||||
exporter("__spread", __spread);
|
||||
exporter("__spreadArrays", __spreadArrays);
|
||||
exporter("__spreadArray", __spreadArray);
|
||||
exporter("__await", __await);
|
||||
exporter("__asyncGenerator", __asyncGenerator);
|
||||
exporter("__asyncDelegator", __asyncDelegator);
|
||||
exporter("__asyncValues", __asyncValues);
|
||||
exporter("__makeTemplateObject", __makeTemplateObject);
|
||||
exporter("__importStar", __importStar);
|
||||
exporter("__importDefault", __importDefault);
|
||||
exporter("__classPrivateFieldGet", __classPrivateFieldGet);
|
||||
exporter("__classPrivateFieldSet", __classPrivateFieldSet);
|
||||
});
|
||||
|
||||
|
||||
/***/ }),
|
||||
@ -19543,312 +19543,312 @@ exports.getPagedAsyncIterator = getPagedAsyncIterator;
|
||||
/***/ 6429:
|
||||
/***/ ((module) => {
|
||||
|
||||
/*! *****************************************************************************
|
||||
Copyright (c) Microsoft Corporation.
|
||||
|
||||
Permission to use, copy, modify, and/or distribute this software for any
|
||||
purpose with or without fee is hereby granted.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
|
||||
REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
|
||||
AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
|
||||
INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
|
||||
LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
|
||||
OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
|
||||
PERFORMANCE OF THIS SOFTWARE.
|
||||
***************************************************************************** */
|
||||
/* global global, define, System, Reflect, Promise */
|
||||
var __extends;
|
||||
var __assign;
|
||||
var __rest;
|
||||
var __decorate;
|
||||
var __param;
|
||||
var __metadata;
|
||||
var __awaiter;
|
||||
var __generator;
|
||||
var __exportStar;
|
||||
var __values;
|
||||
var __read;
|
||||
var __spread;
|
||||
var __spreadArrays;
|
||||
var __spreadArray;
|
||||
var __await;
|
||||
var __asyncGenerator;
|
||||
var __asyncDelegator;
|
||||
var __asyncValues;
|
||||
var __makeTemplateObject;
|
||||
var __importStar;
|
||||
var __importDefault;
|
||||
var __classPrivateFieldGet;
|
||||
var __classPrivateFieldSet;
|
||||
var __createBinding;
|
||||
(function (factory) {
|
||||
var root = typeof global === "object" ? global : typeof self === "object" ? self : typeof this === "object" ? this : {};
|
||||
if (typeof define === "function" && define.amd) {
|
||||
define("tslib", ["exports"], function (exports) { factory(createExporter(root, createExporter(exports))); });
|
||||
}
|
||||
else if ( true && typeof module.exports === "object") {
|
||||
factory(createExporter(root, createExporter(module.exports)));
|
||||
}
|
||||
else {
|
||||
factory(createExporter(root));
|
||||
}
|
||||
function createExporter(exports, previous) {
|
||||
if (exports !== root) {
|
||||
if (typeof Object.create === "function") {
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
}
|
||||
else {
|
||||
exports.__esModule = true;
|
||||
}
|
||||
}
|
||||
return function (id, v) { return exports[id] = previous ? previous(id, v) : v; };
|
||||
}
|
||||
})
|
||||
(function (exporter) {
|
||||
var extendStatics = Object.setPrototypeOf ||
|
||||
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
||||
function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };
|
||||
|
||||
__extends = function (d, b) {
|
||||
if (typeof b !== "function" && b !== null)
|
||||
throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
|
||||
extendStatics(d, b);
|
||||
function __() { this.constructor = d; }
|
||||
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
||||
};
|
||||
|
||||
__assign = Object.assign || function (t) {
|
||||
for (var s, i = 1, n = arguments.length; i < n; i++) {
|
||||
s = arguments[i];
|
||||
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p)) t[p] = s[p];
|
||||
}
|
||||
return t;
|
||||
};
|
||||
|
||||
__rest = function (s, e) {
|
||||
var t = {};
|
||||
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
|
||||
t[p] = s[p];
|
||||
if (s != null && typeof Object.getOwnPropertySymbols === "function")
|
||||
for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
|
||||
if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
|
||||
t[p[i]] = s[p[i]];
|
||||
}
|
||||
return t;
|
||||
};
|
||||
|
||||
__decorate = function (decorators, target, key, desc) {
|
||||
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
||||
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
||||
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
||||
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
||||
};
|
||||
|
||||
__param = function (paramIndex, decorator) {
|
||||
return function (target, key) { decorator(target, key, paramIndex); }
|
||||
};
|
||||
|
||||
__metadata = function (metadataKey, metadataValue) {
|
||||
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(metadataKey, metadataValue);
|
||||
};
|
||||
|
||||
__awaiter = function (thisArg, _arguments, P, generator) {
|
||||
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
||||
return new (P || (P = Promise))(function (resolve, reject) {
|
||||
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
|
||||
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
|
||||
function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
|
||||
step((generator = generator.apply(thisArg, _arguments || [])).next());
|
||||
});
|
||||
};
|
||||
|
||||
__generator = function (thisArg, body) {
|
||||
var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;
|
||||
return g = { next: verb(0), "throw": verb(1), "return": verb(2) }, typeof Symbol === "function" && (g[Symbol.iterator] = function() { return this; }), g;
|
||||
function verb(n) { return function (v) { return step([n, v]); }; }
|
||||
function step(op) {
|
||||
if (f) throw new TypeError("Generator is already executing.");
|
||||
while (_) try {
|
||||
if (f = 1, y && (t = op[0] & 2 ? y["return"] : op[0] ? y["throw"] || ((t = y["return"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t;
|
||||
if (y = 0, t) op = [op[0] & 2, t.value];
|
||||
switch (op[0]) {
|
||||
case 0: case 1: t = op; break;
|
||||
case 4: _.label++; return { value: op[1], done: false };
|
||||
case 5: _.label++; y = op[1]; op = [0]; continue;
|
||||
case 7: op = _.ops.pop(); _.trys.pop(); continue;
|
||||
default:
|
||||
if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }
|
||||
if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }
|
||||
if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }
|
||||
if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }
|
||||
if (t[2]) _.ops.pop();
|
||||
_.trys.pop(); continue;
|
||||
}
|
||||
op = body.call(thisArg, _);
|
||||
} catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }
|
||||
if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };
|
||||
}
|
||||
};
|
||||
|
||||
__exportStar = function(m, o) {
|
||||
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(o, p)) __createBinding(o, m, p);
|
||||
};
|
||||
|
||||
__createBinding = Object.create ? (function(o, m, k, k2) {
|
||||
if (k2 === undefined) k2 = k;
|
||||
Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } });
|
||||
}) : (function(o, m, k, k2) {
|
||||
if (k2 === undefined) k2 = k;
|
||||
o[k2] = m[k];
|
||||
});
|
||||
|
||||
__values = function (o) {
|
||||
var s = typeof Symbol === "function" && Symbol.iterator, m = s && o[s], i = 0;
|
||||
if (m) return m.call(o);
|
||||
if (o && typeof o.length === "number") return {
|
||||
next: function () {
|
||||
if (o && i >= o.length) o = void 0;
|
||||
return { value: o && o[i++], done: !o };
|
||||
}
|
||||
};
|
||||
throw new TypeError(s ? "Object is not iterable." : "Symbol.iterator is not defined.");
|
||||
};
|
||||
|
||||
__read = function (o, n) {
|
||||
var m = typeof Symbol === "function" && o[Symbol.iterator];
|
||||
if (!m) return o;
|
||||
var i = m.call(o), r, ar = [], e;
|
||||
try {
|
||||
while ((n === void 0 || n-- > 0) && !(r = i.next()).done) ar.push(r.value);
|
||||
}
|
||||
catch (error) { e = { error: error }; }
|
||||
finally {
|
||||
try {
|
||||
if (r && !r.done && (m = i["return"])) m.call(i);
|
||||
}
|
||||
finally { if (e) throw e.error; }
|
||||
}
|
||||
return ar;
|
||||
};
|
||||
|
||||
/** @deprecated */
|
||||
__spread = function () {
|
||||
for (var ar = [], i = 0; i < arguments.length; i++)
|
||||
ar = ar.concat(__read(arguments[i]));
|
||||
return ar;
|
||||
};
|
||||
|
||||
/** @deprecated */
|
||||
__spreadArrays = function () {
|
||||
for (var s = 0, i = 0, il = arguments.length; i < il; i++) s += arguments[i].length;
|
||||
for (var r = Array(s), k = 0, i = 0; i < il; i++)
|
||||
for (var a = arguments[i], j = 0, jl = a.length; j < jl; j++, k++)
|
||||
r[k] = a[j];
|
||||
return r;
|
||||
};
|
||||
|
||||
__spreadArray = function (to, from, pack) {
|
||||
if (pack || arguments.length === 2) for (var i = 0, l = from.length, ar; i < l; i++) {
|
||||
if (ar || !(i in from)) {
|
||||
if (!ar) ar = Array.prototype.slice.call(from, 0, i);
|
||||
ar[i] = from[i];
|
||||
}
|
||||
}
|
||||
return to.concat(ar || Array.prototype.slice.call(from));
|
||||
};
|
||||
|
||||
__await = function (v) {
|
||||
return this instanceof __await ? (this.v = v, this) : new __await(v);
|
||||
};
|
||||
|
||||
__asyncGenerator = function (thisArg, _arguments, generator) {
|
||||
if (!Symbol.asyncIterator) throw new TypeError("Symbol.asyncIterator is not defined.");
|
||||
var g = generator.apply(thisArg, _arguments || []), i, q = [];
|
||||
return i = {}, verb("next"), verb("throw"), verb("return"), i[Symbol.asyncIterator] = function () { return this; }, i;
|
||||
function verb(n) { if (g[n]) i[n] = function (v) { return new Promise(function (a, b) { q.push([n, v, a, b]) > 1 || resume(n, v); }); }; }
|
||||
function resume(n, v) { try { step(g[n](v)); } catch (e) { settle(q[0][3], e); } }
|
||||
function step(r) { r.value instanceof __await ? Promise.resolve(r.value.v).then(fulfill, reject) : settle(q[0][2], r); }
|
||||
function fulfill(value) { resume("next", value); }
|
||||
function reject(value) { resume("throw", value); }
|
||||
function settle(f, v) { if (f(v), q.shift(), q.length) resume(q[0][0], q[0][1]); }
|
||||
};
|
||||
|
||||
__asyncDelegator = function (o) {
|
||||
var i, p;
|
||||
return i = {}, verb("next"), verb("throw", function (e) { throw e; }), verb("return"), i[Symbol.iterator] = function () { return this; }, i;
|
||||
function verb(n, f) { i[n] = o[n] ? function (v) { return (p = !p) ? { value: __await(o[n](v)), done: n === "return" } : f ? f(v) : v; } : f; }
|
||||
};
|
||||
|
||||
__asyncValues = function (o) {
|
||||
if (!Symbol.asyncIterator) throw new TypeError("Symbol.asyncIterator is not defined.");
|
||||
var m = o[Symbol.asyncIterator], i;
|
||||
return m ? m.call(o) : (o = typeof __values === "function" ? __values(o) : o[Symbol.iterator](), i = {}, verb("next"), verb("throw"), verb("return"), i[Symbol.asyncIterator] = function () { return this; }, i);
|
||||
function verb(n) { i[n] = o[n] && function (v) { return new Promise(function (resolve, reject) { v = o[n](v), settle(resolve, reject, v.done, v.value); }); }; }
|
||||
function settle(resolve, reject, d, v) { Promise.resolve(v).then(function(v) { resolve({ value: v, done: d }); }, reject); }
|
||||
};
|
||||
|
||||
__makeTemplateObject = function (cooked, raw) {
|
||||
if (Object.defineProperty) { Object.defineProperty(cooked, "raw", { value: raw }); } else { cooked.raw = raw; }
|
||||
return cooked;
|
||||
};
|
||||
|
||||
var __setModuleDefault = Object.create ? (function(o, v) {
|
||||
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
||||
}) : function(o, v) {
|
||||
o["default"] = v;
|
||||
};
|
||||
|
||||
__importStar = function (mod) {
|
||||
if (mod && mod.__esModule) return mod;
|
||||
var result = {};
|
||||
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
||||
__setModuleDefault(result, mod);
|
||||
return result;
|
||||
};
|
||||
|
||||
__importDefault = function (mod) {
|
||||
return (mod && mod.__esModule) ? mod : { "default": mod };
|
||||
};
|
||||
|
||||
__classPrivateFieldGet = function (receiver, state, kind, f) {
|
||||
if (kind === "a" && !f) throw new TypeError("Private accessor was defined without a getter");
|
||||
if (typeof state === "function" ? receiver !== state || !f : !state.has(receiver)) throw new TypeError("Cannot read private member from an object whose class did not declare it");
|
||||
return kind === "m" ? f : kind === "a" ? f.call(receiver) : f ? f.value : state.get(receiver);
|
||||
};
|
||||
|
||||
__classPrivateFieldSet = function (receiver, state, value, kind, f) {
|
||||
if (kind === "m") throw new TypeError("Private method is not writable");
|
||||
if (kind === "a" && !f) throw new TypeError("Private accessor was defined without a setter");
|
||||
if (typeof state === "function" ? receiver !== state || !f : !state.has(receiver)) throw new TypeError("Cannot write private member to an object whose class did not declare it");
|
||||
return (kind === "a" ? f.call(receiver, value) : f ? f.value = value : state.set(receiver, value)), value;
|
||||
};
|
||||
|
||||
exporter("__extends", __extends);
|
||||
exporter("__assign", __assign);
|
||||
exporter("__rest", __rest);
|
||||
exporter("__decorate", __decorate);
|
||||
exporter("__param", __param);
|
||||
exporter("__metadata", __metadata);
|
||||
exporter("__awaiter", __awaiter);
|
||||
exporter("__generator", __generator);
|
||||
exporter("__exportStar", __exportStar);
|
||||
exporter("__createBinding", __createBinding);
|
||||
exporter("__values", __values);
|
||||
exporter("__read", __read);
|
||||
exporter("__spread", __spread);
|
||||
exporter("__spreadArrays", __spreadArrays);
|
||||
exporter("__spreadArray", __spreadArray);
|
||||
exporter("__await", __await);
|
||||
exporter("__asyncGenerator", __asyncGenerator);
|
||||
exporter("__asyncDelegator", __asyncDelegator);
|
||||
exporter("__asyncValues", __asyncValues);
|
||||
exporter("__makeTemplateObject", __makeTemplateObject);
|
||||
exporter("__importStar", __importStar);
|
||||
exporter("__importDefault", __importDefault);
|
||||
exporter("__classPrivateFieldGet", __classPrivateFieldGet);
|
||||
exporter("__classPrivateFieldSet", __classPrivateFieldSet);
|
||||
});
|
||||
/*! *****************************************************************************
|
||||
Copyright (c) Microsoft Corporation.
|
||||
|
||||
Permission to use, copy, modify, and/or distribute this software for any
|
||||
purpose with or without fee is hereby granted.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
|
||||
REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
|
||||
AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
|
||||
INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
|
||||
LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
|
||||
OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
|
||||
PERFORMANCE OF THIS SOFTWARE.
|
||||
***************************************************************************** */
|
||||
/* global global, define, System, Reflect, Promise */
|
||||
var __extends;
|
||||
var __assign;
|
||||
var __rest;
|
||||
var __decorate;
|
||||
var __param;
|
||||
var __metadata;
|
||||
var __awaiter;
|
||||
var __generator;
|
||||
var __exportStar;
|
||||
var __values;
|
||||
var __read;
|
||||
var __spread;
|
||||
var __spreadArrays;
|
||||
var __spreadArray;
|
||||
var __await;
|
||||
var __asyncGenerator;
|
||||
var __asyncDelegator;
|
||||
var __asyncValues;
|
||||
var __makeTemplateObject;
|
||||
var __importStar;
|
||||
var __importDefault;
|
||||
var __classPrivateFieldGet;
|
||||
var __classPrivateFieldSet;
|
||||
var __createBinding;
|
||||
(function (factory) {
|
||||
var root = typeof global === "object" ? global : typeof self === "object" ? self : typeof this === "object" ? this : {};
|
||||
if (typeof define === "function" && define.amd) {
|
||||
define("tslib", ["exports"], function (exports) { factory(createExporter(root, createExporter(exports))); });
|
||||
}
|
||||
else if ( true && typeof module.exports === "object") {
|
||||
factory(createExporter(root, createExporter(module.exports)));
|
||||
}
|
||||
else {
|
||||
factory(createExporter(root));
|
||||
}
|
||||
function createExporter(exports, previous) {
|
||||
if (exports !== root) {
|
||||
if (typeof Object.create === "function") {
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
}
|
||||
else {
|
||||
exports.__esModule = true;
|
||||
}
|
||||
}
|
||||
return function (id, v) { return exports[id] = previous ? previous(id, v) : v; };
|
||||
}
|
||||
})
|
||||
(function (exporter) {
|
||||
var extendStatics = Object.setPrototypeOf ||
|
||||
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
||||
function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };
|
||||
|
||||
__extends = function (d, b) {
|
||||
if (typeof b !== "function" && b !== null)
|
||||
throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
|
||||
extendStatics(d, b);
|
||||
function __() { this.constructor = d; }
|
||||
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
||||
};
|
||||
|
||||
__assign = Object.assign || function (t) {
|
||||
for (var s, i = 1, n = arguments.length; i < n; i++) {
|
||||
s = arguments[i];
|
||||
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p)) t[p] = s[p];
|
||||
}
|
||||
return t;
|
||||
};
|
||||
|
||||
__rest = function (s, e) {
|
||||
var t = {};
|
||||
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
|
||||
t[p] = s[p];
|
||||
if (s != null && typeof Object.getOwnPropertySymbols === "function")
|
||||
for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
|
||||
if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
|
||||
t[p[i]] = s[p[i]];
|
||||
}
|
||||
return t;
|
||||
};
|
||||
|
||||
__decorate = function (decorators, target, key, desc) {
|
||||
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
||||
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
||||
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
||||
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
||||
};
|
||||
|
||||
__param = function (paramIndex, decorator) {
|
||||
return function (target, key) { decorator(target, key, paramIndex); }
|
||||
};
|
||||
|
||||
__metadata = function (metadataKey, metadataValue) {
|
||||
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(metadataKey, metadataValue);
|
||||
};
|
||||
|
||||
__awaiter = function (thisArg, _arguments, P, generator) {
|
||||
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
||||
return new (P || (P = Promise))(function (resolve, reject) {
|
||||
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
|
||||
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
|
||||
function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
|
||||
step((generator = generator.apply(thisArg, _arguments || [])).next());
|
||||
});
|
||||
};
|
||||
|
||||
__generator = function (thisArg, body) {
|
||||
var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;
|
||||
return g = { next: verb(0), "throw": verb(1), "return": verb(2) }, typeof Symbol === "function" && (g[Symbol.iterator] = function() { return this; }), g;
|
||||
function verb(n) { return function (v) { return step([n, v]); }; }
|
||||
function step(op) {
|
||||
if (f) throw new TypeError("Generator is already executing.");
|
||||
while (_) try {
|
||||
if (f = 1, y && (t = op[0] & 2 ? y["return"] : op[0] ? y["throw"] || ((t = y["return"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t;
|
||||
if (y = 0, t) op = [op[0] & 2, t.value];
|
||||
switch (op[0]) {
|
||||
case 0: case 1: t = op; break;
|
||||
case 4: _.label++; return { value: op[1], done: false };
|
||||
case 5: _.label++; y = op[1]; op = [0]; continue;
|
||||
case 7: op = _.ops.pop(); _.trys.pop(); continue;
|
||||
default:
|
||||
if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }
|
||||
if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }
|
||||
if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }
|
||||
if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }
|
||||
if (t[2]) _.ops.pop();
|
||||
_.trys.pop(); continue;
|
||||
}
|
||||
op = body.call(thisArg, _);
|
||||
} catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }
|
||||
if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };
|
||||
}
|
||||
};
|
||||
|
||||
__exportStar = function(m, o) {
|
||||
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(o, p)) __createBinding(o, m, p);
|
||||
};
|
||||
|
||||
__createBinding = Object.create ? (function(o, m, k, k2) {
|
||||
if (k2 === undefined) k2 = k;
|
||||
Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } });
|
||||
}) : (function(o, m, k, k2) {
|
||||
if (k2 === undefined) k2 = k;
|
||||
o[k2] = m[k];
|
||||
});
|
||||
|
||||
__values = function (o) {
|
||||
var s = typeof Symbol === "function" && Symbol.iterator, m = s && o[s], i = 0;
|
||||
if (m) return m.call(o);
|
||||
if (o && typeof o.length === "number") return {
|
||||
next: function () {
|
||||
if (o && i >= o.length) o = void 0;
|
||||
return { value: o && o[i++], done: !o };
|
||||
}
|
||||
};
|
||||
throw new TypeError(s ? "Object is not iterable." : "Symbol.iterator is not defined.");
|
||||
};
|
||||
|
||||
__read = function (o, n) {
|
||||
var m = typeof Symbol === "function" && o[Symbol.iterator];
|
||||
if (!m) return o;
|
||||
var i = m.call(o), r, ar = [], e;
|
||||
try {
|
||||
while ((n === void 0 || n-- > 0) && !(r = i.next()).done) ar.push(r.value);
|
||||
}
|
||||
catch (error) { e = { error: error }; }
|
||||
finally {
|
||||
try {
|
||||
if (r && !r.done && (m = i["return"])) m.call(i);
|
||||
}
|
||||
finally { if (e) throw e.error; }
|
||||
}
|
||||
return ar;
|
||||
};
|
||||
|
||||
/** @deprecated */
|
||||
__spread = function () {
|
||||
for (var ar = [], i = 0; i < arguments.length; i++)
|
||||
ar = ar.concat(__read(arguments[i]));
|
||||
return ar;
|
||||
};
|
||||
|
||||
/** @deprecated */
|
||||
__spreadArrays = function () {
|
||||
for (var s = 0, i = 0, il = arguments.length; i < il; i++) s += arguments[i].length;
|
||||
for (var r = Array(s), k = 0, i = 0; i < il; i++)
|
||||
for (var a = arguments[i], j = 0, jl = a.length; j < jl; j++, k++)
|
||||
r[k] = a[j];
|
||||
return r;
|
||||
};
|
||||
|
||||
__spreadArray = function (to, from, pack) {
|
||||
if (pack || arguments.length === 2) for (var i = 0, l = from.length, ar; i < l; i++) {
|
||||
if (ar || !(i in from)) {
|
||||
if (!ar) ar = Array.prototype.slice.call(from, 0, i);
|
||||
ar[i] = from[i];
|
||||
}
|
||||
}
|
||||
return to.concat(ar || Array.prototype.slice.call(from));
|
||||
};
|
||||
|
||||
__await = function (v) {
|
||||
return this instanceof __await ? (this.v = v, this) : new __await(v);
|
||||
};
|
||||
|
||||
__asyncGenerator = function (thisArg, _arguments, generator) {
|
||||
if (!Symbol.asyncIterator) throw new TypeError("Symbol.asyncIterator is not defined.");
|
||||
var g = generator.apply(thisArg, _arguments || []), i, q = [];
|
||||
return i = {}, verb("next"), verb("throw"), verb("return"), i[Symbol.asyncIterator] = function () { return this; }, i;
|
||||
function verb(n) { if (g[n]) i[n] = function (v) { return new Promise(function (a, b) { q.push([n, v, a, b]) > 1 || resume(n, v); }); }; }
|
||||
function resume(n, v) { try { step(g[n](v)); } catch (e) { settle(q[0][3], e); } }
|
||||
function step(r) { r.value instanceof __await ? Promise.resolve(r.value.v).then(fulfill, reject) : settle(q[0][2], r); }
|
||||
function fulfill(value) { resume("next", value); }
|
||||
function reject(value) { resume("throw", value); }
|
||||
function settle(f, v) { if (f(v), q.shift(), q.length) resume(q[0][0], q[0][1]); }
|
||||
};
|
||||
|
||||
__asyncDelegator = function (o) {
|
||||
var i, p;
|
||||
return i = {}, verb("next"), verb("throw", function (e) { throw e; }), verb("return"), i[Symbol.iterator] = function () { return this; }, i;
|
||||
function verb(n, f) { i[n] = o[n] ? function (v) { return (p = !p) ? { value: __await(o[n](v)), done: n === "return" } : f ? f(v) : v; } : f; }
|
||||
};
|
||||
|
||||
__asyncValues = function (o) {
|
||||
if (!Symbol.asyncIterator) throw new TypeError("Symbol.asyncIterator is not defined.");
|
||||
var m = o[Symbol.asyncIterator], i;
|
||||
return m ? m.call(o) : (o = typeof __values === "function" ? __values(o) : o[Symbol.iterator](), i = {}, verb("next"), verb("throw"), verb("return"), i[Symbol.asyncIterator] = function () { return this; }, i);
|
||||
function verb(n) { i[n] = o[n] && function (v) { return new Promise(function (resolve, reject) { v = o[n](v), settle(resolve, reject, v.done, v.value); }); }; }
|
||||
function settle(resolve, reject, d, v) { Promise.resolve(v).then(function(v) { resolve({ value: v, done: d }); }, reject); }
|
||||
};
|
||||
|
||||
__makeTemplateObject = function (cooked, raw) {
|
||||
if (Object.defineProperty) { Object.defineProperty(cooked, "raw", { value: raw }); } else { cooked.raw = raw; }
|
||||
return cooked;
|
||||
};
|
||||
|
||||
var __setModuleDefault = Object.create ? (function(o, v) {
|
||||
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
||||
}) : function(o, v) {
|
||||
o["default"] = v;
|
||||
};
|
||||
|
||||
__importStar = function (mod) {
|
||||
if (mod && mod.__esModule) return mod;
|
||||
var result = {};
|
||||
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
||||
__setModuleDefault(result, mod);
|
||||
return result;
|
||||
};
|
||||
|
||||
__importDefault = function (mod) {
|
||||
return (mod && mod.__esModule) ? mod : { "default": mod };
|
||||
};
|
||||
|
||||
__classPrivateFieldGet = function (receiver, state, kind, f) {
|
||||
if (kind === "a" && !f) throw new TypeError("Private accessor was defined without a getter");
|
||||
if (typeof state === "function" ? receiver !== state || !f : !state.has(receiver)) throw new TypeError("Cannot read private member from an object whose class did not declare it");
|
||||
return kind === "m" ? f : kind === "a" ? f.call(receiver) : f ? f.value : state.get(receiver);
|
||||
};
|
||||
|
||||
__classPrivateFieldSet = function (receiver, state, value, kind, f) {
|
||||
if (kind === "m") throw new TypeError("Private method is not writable");
|
||||
if (kind === "a" && !f) throw new TypeError("Private accessor was defined without a setter");
|
||||
if (typeof state === "function" ? receiver !== state || !f : !state.has(receiver)) throw new TypeError("Cannot write private member to an object whose class did not declare it");
|
||||
return (kind === "a" ? f.call(receiver, value) : f ? f.value = value : state.set(receiver, value)), value;
|
||||
};
|
||||
|
||||
exporter("__extends", __extends);
|
||||
exporter("__assign", __assign);
|
||||
exporter("__rest", __rest);
|
||||
exporter("__decorate", __decorate);
|
||||
exporter("__param", __param);
|
||||
exporter("__metadata", __metadata);
|
||||
exporter("__awaiter", __awaiter);
|
||||
exporter("__generator", __generator);
|
||||
exporter("__exportStar", __exportStar);
|
||||
exporter("__createBinding", __createBinding);
|
||||
exporter("__values", __values);
|
||||
exporter("__read", __read);
|
||||
exporter("__spread", __spread);
|
||||
exporter("__spreadArrays", __spreadArrays);
|
||||
exporter("__spreadArray", __spreadArray);
|
||||
exporter("__await", __await);
|
||||
exporter("__asyncGenerator", __asyncGenerator);
|
||||
exporter("__asyncDelegator", __asyncDelegator);
|
||||
exporter("__asyncValues", __asyncValues);
|
||||
exporter("__makeTemplateObject", __makeTemplateObject);
|
||||
exporter("__importStar", __importStar);
|
||||
exporter("__importDefault", __importDefault);
|
||||
exporter("__classPrivateFieldGet", __classPrivateFieldGet);
|
||||
exporter("__classPrivateFieldSet", __classPrivateFieldSet);
|
||||
});
|
||||
|
||||
|
||||
/***/ }),
|
||||
@ -45087,312 +45087,312 @@ exports.newPipeline = newPipeline;
|
||||
/***/ 679:
|
||||
/***/ ((module) => {
|
||||
|
||||
/*! *****************************************************************************
|
||||
Copyright (c) Microsoft Corporation.
|
||||
|
||||
Permission to use, copy, modify, and/or distribute this software for any
|
||||
purpose with or without fee is hereby granted.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
|
||||
REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
|
||||
AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
|
||||
INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
|
||||
LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
|
||||
OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
|
||||
PERFORMANCE OF THIS SOFTWARE.
|
||||
***************************************************************************** */
|
||||
/* global global, define, System, Reflect, Promise */
|
||||
var __extends;
|
||||
var __assign;
|
||||
var __rest;
|
||||
var __decorate;
|
||||
var __param;
|
||||
var __metadata;
|
||||
var __awaiter;
|
||||
var __generator;
|
||||
var __exportStar;
|
||||
var __values;
|
||||
var __read;
|
||||
var __spread;
|
||||
var __spreadArrays;
|
||||
var __spreadArray;
|
||||
var __await;
|
||||
var __asyncGenerator;
|
||||
var __asyncDelegator;
|
||||
var __asyncValues;
|
||||
var __makeTemplateObject;
|
||||
var __importStar;
|
||||
var __importDefault;
|
||||
var __classPrivateFieldGet;
|
||||
var __classPrivateFieldSet;
|
||||
var __createBinding;
|
||||
(function (factory) {
|
||||
var root = typeof global === "object" ? global : typeof self === "object" ? self : typeof this === "object" ? this : {};
|
||||
if (typeof define === "function" && define.amd) {
|
||||
define("tslib", ["exports"], function (exports) { factory(createExporter(root, createExporter(exports))); });
|
||||
}
|
||||
else if ( true && typeof module.exports === "object") {
|
||||
factory(createExporter(root, createExporter(module.exports)));
|
||||
}
|
||||
else {
|
||||
factory(createExporter(root));
|
||||
}
|
||||
function createExporter(exports, previous) {
|
||||
if (exports !== root) {
|
||||
if (typeof Object.create === "function") {
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
}
|
||||
else {
|
||||
exports.__esModule = true;
|
||||
}
|
||||
}
|
||||
return function (id, v) { return exports[id] = previous ? previous(id, v) : v; };
|
||||
}
|
||||
})
|
||||
(function (exporter) {
|
||||
var extendStatics = Object.setPrototypeOf ||
|
||||
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
||||
function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };
|
||||
|
||||
__extends = function (d, b) {
|
||||
if (typeof b !== "function" && b !== null)
|
||||
throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
|
||||
extendStatics(d, b);
|
||||
function __() { this.constructor = d; }
|
||||
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
||||
};
|
||||
|
||||
__assign = Object.assign || function (t) {
|
||||
for (var s, i = 1, n = arguments.length; i < n; i++) {
|
||||
s = arguments[i];
|
||||
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p)) t[p] = s[p];
|
||||
}
|
||||
return t;
|
||||
};
|
||||
|
||||
__rest = function (s, e) {
|
||||
var t = {};
|
||||
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
|
||||
t[p] = s[p];
|
||||
if (s != null && typeof Object.getOwnPropertySymbols === "function")
|
||||
for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
|
||||
if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
|
||||
t[p[i]] = s[p[i]];
|
||||
}
|
||||
return t;
|
||||
};
|
||||
|
||||
__decorate = function (decorators, target, key, desc) {
|
||||
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
||||
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
||||
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
||||
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
||||
};
|
||||
|
||||
__param = function (paramIndex, decorator) {
|
||||
return function (target, key) { decorator(target, key, paramIndex); }
|
||||
};
|
||||
|
||||
__metadata = function (metadataKey, metadataValue) {
|
||||
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(metadataKey, metadataValue);
|
||||
};
|
||||
|
||||
__awaiter = function (thisArg, _arguments, P, generator) {
|
||||
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
||||
return new (P || (P = Promise))(function (resolve, reject) {
|
||||
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
|
||||
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
|
||||
function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
|
||||
step((generator = generator.apply(thisArg, _arguments || [])).next());
|
||||
});
|
||||
};
|
||||
|
||||
__generator = function (thisArg, body) {
|
||||
var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;
|
||||
return g = { next: verb(0), "throw": verb(1), "return": verb(2) }, typeof Symbol === "function" && (g[Symbol.iterator] = function() { return this; }), g;
|
||||
function verb(n) { return function (v) { return step([n, v]); }; }
|
||||
function step(op) {
|
||||
if (f) throw new TypeError("Generator is already executing.");
|
||||
while (_) try {
|
||||
if (f = 1, y && (t = op[0] & 2 ? y["return"] : op[0] ? y["throw"] || ((t = y["return"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t;
|
||||
if (y = 0, t) op = [op[0] & 2, t.value];
|
||||
switch (op[0]) {
|
||||
case 0: case 1: t = op; break;
|
||||
case 4: _.label++; return { value: op[1], done: false };
|
||||
case 5: _.label++; y = op[1]; op = [0]; continue;
|
||||
case 7: op = _.ops.pop(); _.trys.pop(); continue;
|
||||
default:
|
||||
if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }
|
||||
if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }
|
||||
if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }
|
||||
if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }
|
||||
if (t[2]) _.ops.pop();
|
||||
_.trys.pop(); continue;
|
||||
}
|
||||
op = body.call(thisArg, _);
|
||||
} catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }
|
||||
if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };
|
||||
}
|
||||
};
|
||||
|
||||
__exportStar = function(m, o) {
|
||||
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(o, p)) __createBinding(o, m, p);
|
||||
};
|
||||
|
||||
__createBinding = Object.create ? (function(o, m, k, k2) {
|
||||
if (k2 === undefined) k2 = k;
|
||||
Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } });
|
||||
}) : (function(o, m, k, k2) {
|
||||
if (k2 === undefined) k2 = k;
|
||||
o[k2] = m[k];
|
||||
});
|
||||
|
||||
__values = function (o) {
|
||||
var s = typeof Symbol === "function" && Symbol.iterator, m = s && o[s], i = 0;
|
||||
if (m) return m.call(o);
|
||||
if (o && typeof o.length === "number") return {
|
||||
next: function () {
|
||||
if (o && i >= o.length) o = void 0;
|
||||
return { value: o && o[i++], done: !o };
|
||||
}
|
||||
};
|
||||
throw new TypeError(s ? "Object is not iterable." : "Symbol.iterator is not defined.");
|
||||
};
|
||||
|
||||
__read = function (o, n) {
|
||||
var m = typeof Symbol === "function" && o[Symbol.iterator];
|
||||
if (!m) return o;
|
||||
var i = m.call(o), r, ar = [], e;
|
||||
try {
|
||||
while ((n === void 0 || n-- > 0) && !(r = i.next()).done) ar.push(r.value);
|
||||
}
|
||||
catch (error) { e = { error: error }; }
|
||||
finally {
|
||||
try {
|
||||
if (r && !r.done && (m = i["return"])) m.call(i);
|
||||
}
|
||||
finally { if (e) throw e.error; }
|
||||
}
|
||||
return ar;
|
||||
};
|
||||
|
||||
/** @deprecated */
|
||||
__spread = function () {
|
||||
for (var ar = [], i = 0; i < arguments.length; i++)
|
||||
ar = ar.concat(__read(arguments[i]));
|
||||
return ar;
|
||||
};
|
||||
|
||||
/** @deprecated */
|
||||
__spreadArrays = function () {
|
||||
for (var s = 0, i = 0, il = arguments.length; i < il; i++) s += arguments[i].length;
|
||||
for (var r = Array(s), k = 0, i = 0; i < il; i++)
|
||||
for (var a = arguments[i], j = 0, jl = a.length; j < jl; j++, k++)
|
||||
r[k] = a[j];
|
||||
return r;
|
||||
};
|
||||
|
||||
__spreadArray = function (to, from, pack) {
|
||||
if (pack || arguments.length === 2) for (var i = 0, l = from.length, ar; i < l; i++) {
|
||||
if (ar || !(i in from)) {
|
||||
if (!ar) ar = Array.prototype.slice.call(from, 0, i);
|
||||
ar[i] = from[i];
|
||||
}
|
||||
}
|
||||
return to.concat(ar || Array.prototype.slice.call(from));
|
||||
};
|
||||
|
||||
__await = function (v) {
|
||||
return this instanceof __await ? (this.v = v, this) : new __await(v);
|
||||
};
|
||||
|
||||
__asyncGenerator = function (thisArg, _arguments, generator) {
|
||||
if (!Symbol.asyncIterator) throw new TypeError("Symbol.asyncIterator is not defined.");
|
||||
var g = generator.apply(thisArg, _arguments || []), i, q = [];
|
||||
return i = {}, verb("next"), verb("throw"), verb("return"), i[Symbol.asyncIterator] = function () { return this; }, i;
|
||||
function verb(n) { if (g[n]) i[n] = function (v) { return new Promise(function (a, b) { q.push([n, v, a, b]) > 1 || resume(n, v); }); }; }
|
||||
function resume(n, v) { try { step(g[n](v)); } catch (e) { settle(q[0][3], e); } }
|
||||
function step(r) { r.value instanceof __await ? Promise.resolve(r.value.v).then(fulfill, reject) : settle(q[0][2], r); }
|
||||
function fulfill(value) { resume("next", value); }
|
||||
function reject(value) { resume("throw", value); }
|
||||
function settle(f, v) { if (f(v), q.shift(), q.length) resume(q[0][0], q[0][1]); }
|
||||
};
|
||||
|
||||
__asyncDelegator = function (o) {
|
||||
var i, p;
|
||||
return i = {}, verb("next"), verb("throw", function (e) { throw e; }), verb("return"), i[Symbol.iterator] = function () { return this; }, i;
|
||||
function verb(n, f) { i[n] = o[n] ? function (v) { return (p = !p) ? { value: __await(o[n](v)), done: n === "return" } : f ? f(v) : v; } : f; }
|
||||
};
|
||||
|
||||
__asyncValues = function (o) {
|
||||
if (!Symbol.asyncIterator) throw new TypeError("Symbol.asyncIterator is not defined.");
|
||||
var m = o[Symbol.asyncIterator], i;
|
||||
return m ? m.call(o) : (o = typeof __values === "function" ? __values(o) : o[Symbol.iterator](), i = {}, verb("next"), verb("throw"), verb("return"), i[Symbol.asyncIterator] = function () { return this; }, i);
|
||||
function verb(n) { i[n] = o[n] && function (v) { return new Promise(function (resolve, reject) { v = o[n](v), settle(resolve, reject, v.done, v.value); }); }; }
|
||||
function settle(resolve, reject, d, v) { Promise.resolve(v).then(function(v) { resolve({ value: v, done: d }); }, reject); }
|
||||
};
|
||||
|
||||
__makeTemplateObject = function (cooked, raw) {
|
||||
if (Object.defineProperty) { Object.defineProperty(cooked, "raw", { value: raw }); } else { cooked.raw = raw; }
|
||||
return cooked;
|
||||
};
|
||||
|
||||
var __setModuleDefault = Object.create ? (function(o, v) {
|
||||
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
||||
}) : function(o, v) {
|
||||
o["default"] = v;
|
||||
};
|
||||
|
||||
__importStar = function (mod) {
|
||||
if (mod && mod.__esModule) return mod;
|
||||
var result = {};
|
||||
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
||||
__setModuleDefault(result, mod);
|
||||
return result;
|
||||
};
|
||||
|
||||
__importDefault = function (mod) {
|
||||
return (mod && mod.__esModule) ? mod : { "default": mod };
|
||||
};
|
||||
|
||||
__classPrivateFieldGet = function (receiver, state, kind, f) {
|
||||
if (kind === "a" && !f) throw new TypeError("Private accessor was defined without a getter");
|
||||
if (typeof state === "function" ? receiver !== state || !f : !state.has(receiver)) throw new TypeError("Cannot read private member from an object whose class did not declare it");
|
||||
return kind === "m" ? f : kind === "a" ? f.call(receiver) : f ? f.value : state.get(receiver);
|
||||
};
|
||||
|
||||
__classPrivateFieldSet = function (receiver, state, value, kind, f) {
|
||||
if (kind === "m") throw new TypeError("Private method is not writable");
|
||||
if (kind === "a" && !f) throw new TypeError("Private accessor was defined without a setter");
|
||||
if (typeof state === "function" ? receiver !== state || !f : !state.has(receiver)) throw new TypeError("Cannot write private member to an object whose class did not declare it");
|
||||
return (kind === "a" ? f.call(receiver, value) : f ? f.value = value : state.set(receiver, value)), value;
|
||||
};
|
||||
|
||||
exporter("__extends", __extends);
|
||||
exporter("__assign", __assign);
|
||||
exporter("__rest", __rest);
|
||||
exporter("__decorate", __decorate);
|
||||
exporter("__param", __param);
|
||||
exporter("__metadata", __metadata);
|
||||
exporter("__awaiter", __awaiter);
|
||||
exporter("__generator", __generator);
|
||||
exporter("__exportStar", __exportStar);
|
||||
exporter("__createBinding", __createBinding);
|
||||
exporter("__values", __values);
|
||||
exporter("__read", __read);
|
||||
exporter("__spread", __spread);
|
||||
exporter("__spreadArrays", __spreadArrays);
|
||||
exporter("__spreadArray", __spreadArray);
|
||||
exporter("__await", __await);
|
||||
exporter("__asyncGenerator", __asyncGenerator);
|
||||
exporter("__asyncDelegator", __asyncDelegator);
|
||||
exporter("__asyncValues", __asyncValues);
|
||||
exporter("__makeTemplateObject", __makeTemplateObject);
|
||||
exporter("__importStar", __importStar);
|
||||
exporter("__importDefault", __importDefault);
|
||||
exporter("__classPrivateFieldGet", __classPrivateFieldGet);
|
||||
exporter("__classPrivateFieldSet", __classPrivateFieldSet);
|
||||
});
|
||||
/*! *****************************************************************************
|
||||
Copyright (c) Microsoft Corporation.
|
||||
|
||||
Permission to use, copy, modify, and/or distribute this software for any
|
||||
purpose with or without fee is hereby granted.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
|
||||
REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
|
||||
AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
|
||||
INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
|
||||
LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
|
||||
OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
|
||||
PERFORMANCE OF THIS SOFTWARE.
|
||||
***************************************************************************** */
|
||||
/* global global, define, System, Reflect, Promise */
|
||||
var __extends;
|
||||
var __assign;
|
||||
var __rest;
|
||||
var __decorate;
|
||||
var __param;
|
||||
var __metadata;
|
||||
var __awaiter;
|
||||
var __generator;
|
||||
var __exportStar;
|
||||
var __values;
|
||||
var __read;
|
||||
var __spread;
|
||||
var __spreadArrays;
|
||||
var __spreadArray;
|
||||
var __await;
|
||||
var __asyncGenerator;
|
||||
var __asyncDelegator;
|
||||
var __asyncValues;
|
||||
var __makeTemplateObject;
|
||||
var __importStar;
|
||||
var __importDefault;
|
||||
var __classPrivateFieldGet;
|
||||
var __classPrivateFieldSet;
|
||||
var __createBinding;
|
||||
(function (factory) {
|
||||
var root = typeof global === "object" ? global : typeof self === "object" ? self : typeof this === "object" ? this : {};
|
||||
if (typeof define === "function" && define.amd) {
|
||||
define("tslib", ["exports"], function (exports) { factory(createExporter(root, createExporter(exports))); });
|
||||
}
|
||||
else if ( true && typeof module.exports === "object") {
|
||||
factory(createExporter(root, createExporter(module.exports)));
|
||||
}
|
||||
else {
|
||||
factory(createExporter(root));
|
||||
}
|
||||
function createExporter(exports, previous) {
|
||||
if (exports !== root) {
|
||||
if (typeof Object.create === "function") {
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
}
|
||||
else {
|
||||
exports.__esModule = true;
|
||||
}
|
||||
}
|
||||
return function (id, v) { return exports[id] = previous ? previous(id, v) : v; };
|
||||
}
|
||||
})
|
||||
(function (exporter) {
|
||||
var extendStatics = Object.setPrototypeOf ||
|
||||
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
||||
function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };
|
||||
|
||||
__extends = function (d, b) {
|
||||
if (typeof b !== "function" && b !== null)
|
||||
throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
|
||||
extendStatics(d, b);
|
||||
function __() { this.constructor = d; }
|
||||
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
||||
};
|
||||
|
||||
__assign = Object.assign || function (t) {
|
||||
for (var s, i = 1, n = arguments.length; i < n; i++) {
|
||||
s = arguments[i];
|
||||
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p)) t[p] = s[p];
|
||||
}
|
||||
return t;
|
||||
};
|
||||
|
||||
__rest = function (s, e) {
|
||||
var t = {};
|
||||
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
|
||||
t[p] = s[p];
|
||||
if (s != null && typeof Object.getOwnPropertySymbols === "function")
|
||||
for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
|
||||
if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
|
||||
t[p[i]] = s[p[i]];
|
||||
}
|
||||
return t;
|
||||
};
|
||||
|
||||
__decorate = function (decorators, target, key, desc) {
|
||||
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
||||
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
||||
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
||||
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
||||
};
|
||||
|
||||
__param = function (paramIndex, decorator) {
|
||||
return function (target, key) { decorator(target, key, paramIndex); }
|
||||
};
|
||||
|
||||
__metadata = function (metadataKey, metadataValue) {
|
||||
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(metadataKey, metadataValue);
|
||||
};
|
||||
|
||||
__awaiter = function (thisArg, _arguments, P, generator) {
|
||||
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
||||
return new (P || (P = Promise))(function (resolve, reject) {
|
||||
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
|
||||
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
|
||||
function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
|
||||
step((generator = generator.apply(thisArg, _arguments || [])).next());
|
||||
});
|
||||
};
|
||||
|
||||
__generator = function (thisArg, body) {
|
||||
var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;
|
||||
return g = { next: verb(0), "throw": verb(1), "return": verb(2) }, typeof Symbol === "function" && (g[Symbol.iterator] = function() { return this; }), g;
|
||||
function verb(n) { return function (v) { return step([n, v]); }; }
|
||||
function step(op) {
|
||||
if (f) throw new TypeError("Generator is already executing.");
|
||||
while (_) try {
|
||||
if (f = 1, y && (t = op[0] & 2 ? y["return"] : op[0] ? y["throw"] || ((t = y["return"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t;
|
||||
if (y = 0, t) op = [op[0] & 2, t.value];
|
||||
switch (op[0]) {
|
||||
case 0: case 1: t = op; break;
|
||||
case 4: _.label++; return { value: op[1], done: false };
|
||||
case 5: _.label++; y = op[1]; op = [0]; continue;
|
||||
case 7: op = _.ops.pop(); _.trys.pop(); continue;
|
||||
default:
|
||||
if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }
|
||||
if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }
|
||||
if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }
|
||||
if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }
|
||||
if (t[2]) _.ops.pop();
|
||||
_.trys.pop(); continue;
|
||||
}
|
||||
op = body.call(thisArg, _);
|
||||
} catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }
|
||||
if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };
|
||||
}
|
||||
};
|
||||
|
||||
__exportStar = function(m, o) {
|
||||
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(o, p)) __createBinding(o, m, p);
|
||||
};
|
||||
|
||||
__createBinding = Object.create ? (function(o, m, k, k2) {
|
||||
if (k2 === undefined) k2 = k;
|
||||
Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } });
|
||||
}) : (function(o, m, k, k2) {
|
||||
if (k2 === undefined) k2 = k;
|
||||
o[k2] = m[k];
|
||||
});
|
||||
|
||||
__values = function (o) {
|
||||
var s = typeof Symbol === "function" && Symbol.iterator, m = s && o[s], i = 0;
|
||||
if (m) return m.call(o);
|
||||
if (o && typeof o.length === "number") return {
|
||||
next: function () {
|
||||
if (o && i >= o.length) o = void 0;
|
||||
return { value: o && o[i++], done: !o };
|
||||
}
|
||||
};
|
||||
throw new TypeError(s ? "Object is not iterable." : "Symbol.iterator is not defined.");
|
||||
};
|
||||
|
||||
__read = function (o, n) {
|
||||
var m = typeof Symbol === "function" && o[Symbol.iterator];
|
||||
if (!m) return o;
|
||||
var i = m.call(o), r, ar = [], e;
|
||||
try {
|
||||
while ((n === void 0 || n-- > 0) && !(r = i.next()).done) ar.push(r.value);
|
||||
}
|
||||
catch (error) { e = { error: error }; }
|
||||
finally {
|
||||
try {
|
||||
if (r && !r.done && (m = i["return"])) m.call(i);
|
||||
}
|
||||
finally { if (e) throw e.error; }
|
||||
}
|
||||
return ar;
|
||||
};
|
||||
|
||||
/** @deprecated */
|
||||
__spread = function () {
|
||||
for (var ar = [], i = 0; i < arguments.length; i++)
|
||||
ar = ar.concat(__read(arguments[i]));
|
||||
return ar;
|
||||
};
|
||||
|
||||
/** @deprecated */
|
||||
__spreadArrays = function () {
|
||||
for (var s = 0, i = 0, il = arguments.length; i < il; i++) s += arguments[i].length;
|
||||
for (var r = Array(s), k = 0, i = 0; i < il; i++)
|
||||
for (var a = arguments[i], j = 0, jl = a.length; j < jl; j++, k++)
|
||||
r[k] = a[j];
|
||||
return r;
|
||||
};
|
||||
|
||||
__spreadArray = function (to, from, pack) {
|
||||
if (pack || arguments.length === 2) for (var i = 0, l = from.length, ar; i < l; i++) {
|
||||
if (ar || !(i in from)) {
|
||||
if (!ar) ar = Array.prototype.slice.call(from, 0, i);
|
||||
ar[i] = from[i];
|
||||
}
|
||||
}
|
||||
return to.concat(ar || Array.prototype.slice.call(from));
|
||||
};
|
||||
|
||||
__await = function (v) {
|
||||
return this instanceof __await ? (this.v = v, this) : new __await(v);
|
||||
};
|
||||
|
||||
__asyncGenerator = function (thisArg, _arguments, generator) {
|
||||
if (!Symbol.asyncIterator) throw new TypeError("Symbol.asyncIterator is not defined.");
|
||||
var g = generator.apply(thisArg, _arguments || []), i, q = [];
|
||||
return i = {}, verb("next"), verb("throw"), verb("return"), i[Symbol.asyncIterator] = function () { return this; }, i;
|
||||
function verb(n) { if (g[n]) i[n] = function (v) { return new Promise(function (a, b) { q.push([n, v, a, b]) > 1 || resume(n, v); }); }; }
|
||||
function resume(n, v) { try { step(g[n](v)); } catch (e) { settle(q[0][3], e); } }
|
||||
function step(r) { r.value instanceof __await ? Promise.resolve(r.value.v).then(fulfill, reject) : settle(q[0][2], r); }
|
||||
function fulfill(value) { resume("next", value); }
|
||||
function reject(value) { resume("throw", value); }
|
||||
function settle(f, v) { if (f(v), q.shift(), q.length) resume(q[0][0], q[0][1]); }
|
||||
};
|
||||
|
||||
__asyncDelegator = function (o) {
|
||||
var i, p;
|
||||
return i = {}, verb("next"), verb("throw", function (e) { throw e; }), verb("return"), i[Symbol.iterator] = function () { return this; }, i;
|
||||
function verb(n, f) { i[n] = o[n] ? function (v) { return (p = !p) ? { value: __await(o[n](v)), done: n === "return" } : f ? f(v) : v; } : f; }
|
||||
};
|
||||
|
||||
__asyncValues = function (o) {
|
||||
if (!Symbol.asyncIterator) throw new TypeError("Symbol.asyncIterator is not defined.");
|
||||
var m = o[Symbol.asyncIterator], i;
|
||||
return m ? m.call(o) : (o = typeof __values === "function" ? __values(o) : o[Symbol.iterator](), i = {}, verb("next"), verb("throw"), verb("return"), i[Symbol.asyncIterator] = function () { return this; }, i);
|
||||
function verb(n) { i[n] = o[n] && function (v) { return new Promise(function (resolve, reject) { v = o[n](v), settle(resolve, reject, v.done, v.value); }); }; }
|
||||
function settle(resolve, reject, d, v) { Promise.resolve(v).then(function(v) { resolve({ value: v, done: d }); }, reject); }
|
||||
};
|
||||
|
||||
__makeTemplateObject = function (cooked, raw) {
|
||||
if (Object.defineProperty) { Object.defineProperty(cooked, "raw", { value: raw }); } else { cooked.raw = raw; }
|
||||
return cooked;
|
||||
};
|
||||
|
||||
var __setModuleDefault = Object.create ? (function(o, v) {
|
||||
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
||||
}) : function(o, v) {
|
||||
o["default"] = v;
|
||||
};
|
||||
|
||||
__importStar = function (mod) {
|
||||
if (mod && mod.__esModule) return mod;
|
||||
var result = {};
|
||||
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
||||
__setModuleDefault(result, mod);
|
||||
return result;
|
||||
};
|
||||
|
||||
__importDefault = function (mod) {
|
||||
return (mod && mod.__esModule) ? mod : { "default": mod };
|
||||
};
|
||||
|
||||
__classPrivateFieldGet = function (receiver, state, kind, f) {
|
||||
if (kind === "a" && !f) throw new TypeError("Private accessor was defined without a getter");
|
||||
if (typeof state === "function" ? receiver !== state || !f : !state.has(receiver)) throw new TypeError("Cannot read private member from an object whose class did not declare it");
|
||||
return kind === "m" ? f : kind === "a" ? f.call(receiver) : f ? f.value : state.get(receiver);
|
||||
};
|
||||
|
||||
__classPrivateFieldSet = function (receiver, state, value, kind, f) {
|
||||
if (kind === "m") throw new TypeError("Private method is not writable");
|
||||
if (kind === "a" && !f) throw new TypeError("Private accessor was defined without a setter");
|
||||
if (typeof state === "function" ? receiver !== state || !f : !state.has(receiver)) throw new TypeError("Cannot write private member to an object whose class did not declare it");
|
||||
return (kind === "a" ? f.call(receiver, value) : f ? f.value = value : state.set(receiver, value)), value;
|
||||
};
|
||||
|
||||
exporter("__extends", __extends);
|
||||
exporter("__assign", __assign);
|
||||
exporter("__rest", __rest);
|
||||
exporter("__decorate", __decorate);
|
||||
exporter("__param", __param);
|
||||
exporter("__metadata", __metadata);
|
||||
exporter("__awaiter", __awaiter);
|
||||
exporter("__generator", __generator);
|
||||
exporter("__exportStar", __exportStar);
|
||||
exporter("__createBinding", __createBinding);
|
||||
exporter("__values", __values);
|
||||
exporter("__read", __read);
|
||||
exporter("__spread", __spread);
|
||||
exporter("__spreadArrays", __spreadArrays);
|
||||
exporter("__spreadArray", __spreadArray);
|
||||
exporter("__await", __await);
|
||||
exporter("__asyncGenerator", __asyncGenerator);
|
||||
exporter("__asyncDelegator", __asyncDelegator);
|
||||
exporter("__asyncValues", __asyncValues);
|
||||
exporter("__makeTemplateObject", __makeTemplateObject);
|
||||
exporter("__importStar", __importStar);
|
||||
exporter("__importDefault", __importDefault);
|
||||
exporter("__classPrivateFieldGet", __classPrivateFieldGet);
|
||||
exporter("__classPrivateFieldSet", __classPrivateFieldSet);
|
||||
});
|
||||
|
||||
|
||||
/***/ }),
|
||||
@ -52675,1303 +52675,1303 @@ exports.parseURL = __nccwpck_require__(33).parseURL;
|
||||
/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => {
|
||||
|
||||
"use strict";
|
||||
|
||||
const punycode = __nccwpck_require__(5477);
|
||||
const tr46 = __nccwpck_require__(2299);
|
||||
|
||||
const specialSchemes = {
|
||||
ftp: 21,
|
||||
file: null,
|
||||
gopher: 70,
|
||||
http: 80,
|
||||
https: 443,
|
||||
ws: 80,
|
||||
wss: 443
|
||||
};
|
||||
|
||||
const failure = Symbol("failure");
|
||||
|
||||
function countSymbols(str) {
|
||||
return punycode.ucs2.decode(str).length;
|
||||
}
|
||||
|
||||
function at(input, idx) {
|
||||
const c = input[idx];
|
||||
return isNaN(c) ? undefined : String.fromCodePoint(c);
|
||||
}
|
||||
|
||||
function isASCIIDigit(c) {
|
||||
return c >= 0x30 && c <= 0x39;
|
||||
}
|
||||
|
||||
function isASCIIAlpha(c) {
|
||||
return (c >= 0x41 && c <= 0x5A) || (c >= 0x61 && c <= 0x7A);
|
||||
}
|
||||
|
||||
function isASCIIAlphanumeric(c) {
|
||||
return isASCIIAlpha(c) || isASCIIDigit(c);
|
||||
}
|
||||
|
||||
function isASCIIHex(c) {
|
||||
return isASCIIDigit(c) || (c >= 0x41 && c <= 0x46) || (c >= 0x61 && c <= 0x66);
|
||||
}
|
||||
|
||||
function isSingleDot(buffer) {
|
||||
return buffer === "." || buffer.toLowerCase() === "%2e";
|
||||
}
|
||||
|
||||
function isDoubleDot(buffer) {
|
||||
buffer = buffer.toLowerCase();
|
||||
return buffer === ".." || buffer === "%2e." || buffer === ".%2e" || buffer === "%2e%2e";
|
||||
}
|
||||
|
||||
function isWindowsDriveLetterCodePoints(cp1, cp2) {
|
||||
return isASCIIAlpha(cp1) && (cp2 === 58 || cp2 === 124);
|
||||
}
|
||||
|
||||
function isWindowsDriveLetterString(string) {
|
||||
return string.length === 2 && isASCIIAlpha(string.codePointAt(0)) && (string[1] === ":" || string[1] === "|");
|
||||
}
|
||||
|
||||
function isNormalizedWindowsDriveLetterString(string) {
|
||||
return string.length === 2 && isASCIIAlpha(string.codePointAt(0)) && string[1] === ":";
|
||||
}
|
||||
|
||||
function containsForbiddenHostCodePoint(string) {
|
||||
return string.search(/\u0000|\u0009|\u000A|\u000D|\u0020|#|%|\/|:|\?|@|\[|\\|\]/) !== -1;
|
||||
}
|
||||
|
||||
function containsForbiddenHostCodePointExcludingPercent(string) {
|
||||
return string.search(/\u0000|\u0009|\u000A|\u000D|\u0020|#|\/|:|\?|@|\[|\\|\]/) !== -1;
|
||||
}
|
||||
|
||||
function isSpecialScheme(scheme) {
|
||||
return specialSchemes[scheme] !== undefined;
|
||||
}
|
||||
|
||||
function isSpecial(url) {
|
||||
return isSpecialScheme(url.scheme);
|
||||
}
|
||||
|
||||
function defaultPort(scheme) {
|
||||
return specialSchemes[scheme];
|
||||
}
|
||||
|
||||
function percentEncode(c) {
|
||||
let hex = c.toString(16).toUpperCase();
|
||||
if (hex.length === 1) {
|
||||
hex = "0" + hex;
|
||||
}
|
||||
|
||||
return "%" + hex;
|
||||
}
|
||||
|
||||
function utf8PercentEncode(c) {
|
||||
const buf = new Buffer(c);
|
||||
|
||||
let str = "";
|
||||
|
||||
for (let i = 0; i < buf.length; ++i) {
|
||||
str += percentEncode(buf[i]);
|
||||
}
|
||||
|
||||
return str;
|
||||
}
|
||||
|
||||
function utf8PercentDecode(str) {
|
||||
const input = new Buffer(str);
|
||||
const output = [];
|
||||
for (let i = 0; i < input.length; ++i) {
|
||||
if (input[i] !== 37) {
|
||||
output.push(input[i]);
|
||||
} else if (input[i] === 37 && isASCIIHex(input[i + 1]) && isASCIIHex(input[i + 2])) {
|
||||
output.push(parseInt(input.slice(i + 1, i + 3).toString(), 16));
|
||||
i += 2;
|
||||
} else {
|
||||
output.push(input[i]);
|
||||
}
|
||||
}
|
||||
return new Buffer(output).toString();
|
||||
}
|
||||
|
||||
function isC0ControlPercentEncode(c) {
|
||||
return c <= 0x1F || c > 0x7E;
|
||||
}
|
||||
|
||||
const extraPathPercentEncodeSet = new Set([32, 34, 35, 60, 62, 63, 96, 123, 125]);
|
||||
function isPathPercentEncode(c) {
|
||||
return isC0ControlPercentEncode(c) || extraPathPercentEncodeSet.has(c);
|
||||
}
|
||||
|
||||
const extraUserinfoPercentEncodeSet =
|
||||
new Set([47, 58, 59, 61, 64, 91, 92, 93, 94, 124]);
|
||||
function isUserinfoPercentEncode(c) {
|
||||
return isPathPercentEncode(c) || extraUserinfoPercentEncodeSet.has(c);
|
||||
}
|
||||
|
||||
function percentEncodeChar(c, encodeSetPredicate) {
|
||||
const cStr = String.fromCodePoint(c);
|
||||
|
||||
if (encodeSetPredicate(c)) {
|
||||
return utf8PercentEncode(cStr);
|
||||
}
|
||||
|
||||
return cStr;
|
||||
}
|
||||
|
||||
function parseIPv4Number(input) {
|
||||
let R = 10;
|
||||
|
||||
if (input.length >= 2 && input.charAt(0) === "0" && input.charAt(1).toLowerCase() === "x") {
|
||||
input = input.substring(2);
|
||||
R = 16;
|
||||
} else if (input.length >= 2 && input.charAt(0) === "0") {
|
||||
input = input.substring(1);
|
||||
R = 8;
|
||||
}
|
||||
|
||||
if (input === "") {
|
||||
return 0;
|
||||
}
|
||||
|
||||
const regex = R === 10 ? /[^0-9]/ : (R === 16 ? /[^0-9A-Fa-f]/ : /[^0-7]/);
|
||||
if (regex.test(input)) {
|
||||
return failure;
|
||||
}
|
||||
|
||||
return parseInt(input, R);
|
||||
}
|
||||
|
||||
function parseIPv4(input) {
|
||||
const parts = input.split(".");
|
||||
if (parts[parts.length - 1] === "") {
|
||||
if (parts.length > 1) {
|
||||
parts.pop();
|
||||
}
|
||||
}
|
||||
|
||||
if (parts.length > 4) {
|
||||
return input;
|
||||
}
|
||||
|
||||
const numbers = [];
|
||||
for (const part of parts) {
|
||||
if (part === "") {
|
||||
return input;
|
||||
}
|
||||
const n = parseIPv4Number(part);
|
||||
if (n === failure) {
|
||||
return input;
|
||||
}
|
||||
|
||||
numbers.push(n);
|
||||
}
|
||||
|
||||
for (let i = 0; i < numbers.length - 1; ++i) {
|
||||
if (numbers[i] > 255) {
|
||||
return failure;
|
||||
}
|
||||
}
|
||||
if (numbers[numbers.length - 1] >= Math.pow(256, 5 - numbers.length)) {
|
||||
return failure;
|
||||
}
|
||||
|
||||
let ipv4 = numbers.pop();
|
||||
let counter = 0;
|
||||
|
||||
for (const n of numbers) {
|
||||
ipv4 += n * Math.pow(256, 3 - counter);
|
||||
++counter;
|
||||
}
|
||||
|
||||
return ipv4;
|
||||
}
|
||||
|
||||
function serializeIPv4(address) {
|
||||
let output = "";
|
||||
let n = address;
|
||||
|
||||
for (let i = 1; i <= 4; ++i) {
|
||||
output = String(n % 256) + output;
|
||||
if (i !== 4) {
|
||||
output = "." + output;
|
||||
}
|
||||
n = Math.floor(n / 256);
|
||||
}
|
||||
|
||||
return output;
|
||||
}
|
||||
|
||||
function parseIPv6(input) {
|
||||
const address = [0, 0, 0, 0, 0, 0, 0, 0];
|
||||
let pieceIndex = 0;
|
||||
let compress = null;
|
||||
let pointer = 0;
|
||||
|
||||
input = punycode.ucs2.decode(input);
|
||||
|
||||
if (input[pointer] === 58) {
|
||||
if (input[pointer + 1] !== 58) {
|
||||
return failure;
|
||||
}
|
||||
|
||||
pointer += 2;
|
||||
++pieceIndex;
|
||||
compress = pieceIndex;
|
||||
}
|
||||
|
||||
while (pointer < input.length) {
|
||||
if (pieceIndex === 8) {
|
||||
return failure;
|
||||
}
|
||||
|
||||
if (input[pointer] === 58) {
|
||||
if (compress !== null) {
|
||||
return failure;
|
||||
}
|
||||
++pointer;
|
||||
++pieceIndex;
|
||||
compress = pieceIndex;
|
||||
continue;
|
||||
}
|
||||
|
||||
let value = 0;
|
||||
let length = 0;
|
||||
|
||||
while (length < 4 && isASCIIHex(input[pointer])) {
|
||||
value = value * 0x10 + parseInt(at(input, pointer), 16);
|
||||
++pointer;
|
||||
++length;
|
||||
}
|
||||
|
||||
if (input[pointer] === 46) {
|
||||
if (length === 0) {
|
||||
return failure;
|
||||
}
|
||||
|
||||
pointer -= length;
|
||||
|
||||
if (pieceIndex > 6) {
|
||||
return failure;
|
||||
}
|
||||
|
||||
let numbersSeen = 0;
|
||||
|
||||
while (input[pointer] !== undefined) {
|
||||
let ipv4Piece = null;
|
||||
|
||||
if (numbersSeen > 0) {
|
||||
if (input[pointer] === 46 && numbersSeen < 4) {
|
||||
++pointer;
|
||||
} else {
|
||||
return failure;
|
||||
}
|
||||
}
|
||||
|
||||
if (!isASCIIDigit(input[pointer])) {
|
||||
return failure;
|
||||
}
|
||||
|
||||
while (isASCIIDigit(input[pointer])) {
|
||||
const number = parseInt(at(input, pointer));
|
||||
if (ipv4Piece === null) {
|
||||
ipv4Piece = number;
|
||||
} else if (ipv4Piece === 0) {
|
||||
return failure;
|
||||
} else {
|
||||
ipv4Piece = ipv4Piece * 10 + number;
|
||||
}
|
||||
if (ipv4Piece > 255) {
|
||||
return failure;
|
||||
}
|
||||
++pointer;
|
||||
}
|
||||
|
||||
address[pieceIndex] = address[pieceIndex] * 0x100 + ipv4Piece;
|
||||
|
||||
++numbersSeen;
|
||||
|
||||
if (numbersSeen === 2 || numbersSeen === 4) {
|
||||
++pieceIndex;
|
||||
}
|
||||
}
|
||||
|
||||
if (numbersSeen !== 4) {
|
||||
return failure;
|
||||
}
|
||||
|
||||
break;
|
||||
} else if (input[pointer] === 58) {
|
||||
++pointer;
|
||||
if (input[pointer] === undefined) {
|
||||
return failure;
|
||||
}
|
||||
} else if (input[pointer] !== undefined) {
|
||||
return failure;
|
||||
}
|
||||
|
||||
address[pieceIndex] = value;
|
||||
++pieceIndex;
|
||||
}
|
||||
|
||||
if (compress !== null) {
|
||||
let swaps = pieceIndex - compress;
|
||||
pieceIndex = 7;
|
||||
while (pieceIndex !== 0 && swaps > 0) {
|
||||
const temp = address[compress + swaps - 1];
|
||||
address[compress + swaps - 1] = address[pieceIndex];
|
||||
address[pieceIndex] = temp;
|
||||
--pieceIndex;
|
||||
--swaps;
|
||||
}
|
||||
} else if (compress === null && pieceIndex !== 8) {
|
||||
return failure;
|
||||
}
|
||||
|
||||
return address;
|
||||
}
|
||||
|
||||
function serializeIPv6(address) {
|
||||
let output = "";
|
||||
const seqResult = findLongestZeroSequence(address);
|
||||
const compress = seqResult.idx;
|
||||
let ignore0 = false;
|
||||
|
||||
for (let pieceIndex = 0; pieceIndex <= 7; ++pieceIndex) {
|
||||
if (ignore0 && address[pieceIndex] === 0) {
|
||||
continue;
|
||||
} else if (ignore0) {
|
||||
ignore0 = false;
|
||||
}
|
||||
|
||||
if (compress === pieceIndex) {
|
||||
const separator = pieceIndex === 0 ? "::" : ":";
|
||||
output += separator;
|
||||
ignore0 = true;
|
||||
continue;
|
||||
}
|
||||
|
||||
output += address[pieceIndex].toString(16);
|
||||
|
||||
if (pieceIndex !== 7) {
|
||||
output += ":";
|
||||
}
|
||||
}
|
||||
|
||||
return output;
|
||||
}
|
||||
|
||||
function parseHost(input, isSpecialArg) {
|
||||
if (input[0] === "[") {
|
||||
if (input[input.length - 1] !== "]") {
|
||||
return failure;
|
||||
}
|
||||
|
||||
return parseIPv6(input.substring(1, input.length - 1));
|
||||
}
|
||||
|
||||
if (!isSpecialArg) {
|
||||
return parseOpaqueHost(input);
|
||||
}
|
||||
|
||||
const domain = utf8PercentDecode(input);
|
||||
const asciiDomain = tr46.toASCII(domain, false, tr46.PROCESSING_OPTIONS.NONTRANSITIONAL, false);
|
||||
if (asciiDomain === null) {
|
||||
return failure;
|
||||
}
|
||||
|
||||
if (containsForbiddenHostCodePoint(asciiDomain)) {
|
||||
return failure;
|
||||
}
|
||||
|
||||
const ipv4Host = parseIPv4(asciiDomain);
|
||||
if (typeof ipv4Host === "number" || ipv4Host === failure) {
|
||||
return ipv4Host;
|
||||
}
|
||||
|
||||
return asciiDomain;
|
||||
}
|
||||
|
||||
function parseOpaqueHost(input) {
|
||||
if (containsForbiddenHostCodePointExcludingPercent(input)) {
|
||||
return failure;
|
||||
}
|
||||
|
||||
let output = "";
|
||||
const decoded = punycode.ucs2.decode(input);
|
||||
for (let i = 0; i < decoded.length; ++i) {
|
||||
output += percentEncodeChar(decoded[i], isC0ControlPercentEncode);
|
||||
}
|
||||
return output;
|
||||
}
|
||||
|
||||
function findLongestZeroSequence(arr) {
|
||||
let maxIdx = null;
|
||||
let maxLen = 1; // only find elements > 1
|
||||
let currStart = null;
|
||||
let currLen = 0;
|
||||
|
||||
for (let i = 0; i < arr.length; ++i) {
|
||||
if (arr[i] !== 0) {
|
||||
if (currLen > maxLen) {
|
||||
maxIdx = currStart;
|
||||
maxLen = currLen;
|
||||
}
|
||||
|
||||
currStart = null;
|
||||
currLen = 0;
|
||||
} else {
|
||||
if (currStart === null) {
|
||||
currStart = i;
|
||||
}
|
||||
++currLen;
|
||||
}
|
||||
}
|
||||
|
||||
// if trailing zeros
|
||||
if (currLen > maxLen) {
|
||||
maxIdx = currStart;
|
||||
maxLen = currLen;
|
||||
}
|
||||
|
||||
return {
|
||||
idx: maxIdx,
|
||||
len: maxLen
|
||||
};
|
||||
}
|
||||
|
||||
function serializeHost(host) {
|
||||
if (typeof host === "number") {
|
||||
return serializeIPv4(host);
|
||||
}
|
||||
|
||||
// IPv6 serializer
|
||||
if (host instanceof Array) {
|
||||
return "[" + serializeIPv6(host) + "]";
|
||||
}
|
||||
|
||||
return host;
|
||||
}
|
||||
|
||||
function trimControlChars(url) {
|
||||
return url.replace(/^[\u0000-\u001F\u0020]+|[\u0000-\u001F\u0020]+$/g, "");
|
||||
}
|
||||
|
||||
function trimTabAndNewline(url) {
|
||||
return url.replace(/\u0009|\u000A|\u000D/g, "");
|
||||
}
|
||||
|
||||
function shortenPath(url) {
|
||||
const path = url.path;
|
||||
if (path.length === 0) {
|
||||
return;
|
||||
}
|
||||
if (url.scheme === "file" && path.length === 1 && isNormalizedWindowsDriveLetter(path[0])) {
|
||||
return;
|
||||
}
|
||||
|
||||
path.pop();
|
||||
}
|
||||
|
||||
function includesCredentials(url) {
|
||||
return url.username !== "" || url.password !== "";
|
||||
}
|
||||
|
||||
function cannotHaveAUsernamePasswordPort(url) {
|
||||
return url.host === null || url.host === "" || url.cannotBeABaseURL || url.scheme === "file";
|
||||
}
|
||||
|
||||
function isNormalizedWindowsDriveLetter(string) {
|
||||
return /^[A-Za-z]:$/.test(string);
|
||||
}
|
||||
|
||||
function URLStateMachine(input, base, encodingOverride, url, stateOverride) {
|
||||
this.pointer = 0;
|
||||
this.input = input;
|
||||
this.base = base || null;
|
||||
this.encodingOverride = encodingOverride || "utf-8";
|
||||
this.stateOverride = stateOverride;
|
||||
this.url = url;
|
||||
this.failure = false;
|
||||
this.parseError = false;
|
||||
|
||||
if (!this.url) {
|
||||
this.url = {
|
||||
scheme: "",
|
||||
username: "",
|
||||
password: "",
|
||||
host: null,
|
||||
port: null,
|
||||
path: [],
|
||||
query: null,
|
||||
fragment: null,
|
||||
|
||||
cannotBeABaseURL: false
|
||||
};
|
||||
|
||||
const res = trimControlChars(this.input);
|
||||
if (res !== this.input) {
|
||||
this.parseError = true;
|
||||
}
|
||||
this.input = res;
|
||||
}
|
||||
|
||||
const res = trimTabAndNewline(this.input);
|
||||
if (res !== this.input) {
|
||||
this.parseError = true;
|
||||
}
|
||||
this.input = res;
|
||||
|
||||
this.state = stateOverride || "scheme start";
|
||||
|
||||
this.buffer = "";
|
||||
this.atFlag = false;
|
||||
this.arrFlag = false;
|
||||
this.passwordTokenSeenFlag = false;
|
||||
|
||||
this.input = punycode.ucs2.decode(this.input);
|
||||
|
||||
for (; this.pointer <= this.input.length; ++this.pointer) {
|
||||
const c = this.input[this.pointer];
|
||||
const cStr = isNaN(c) ? undefined : String.fromCodePoint(c);
|
||||
|
||||
// exec state machine
|
||||
const ret = this["parse " + this.state](c, cStr);
|
||||
if (!ret) {
|
||||
break; // terminate algorithm
|
||||
} else if (ret === failure) {
|
||||
this.failure = true;
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
URLStateMachine.prototype["parse scheme start"] = function parseSchemeStart(c, cStr) {
|
||||
if (isASCIIAlpha(c)) {
|
||||
this.buffer += cStr.toLowerCase();
|
||||
this.state = "scheme";
|
||||
} else if (!this.stateOverride) {
|
||||
this.state = "no scheme";
|
||||
--this.pointer;
|
||||
} else {
|
||||
this.parseError = true;
|
||||
return failure;
|
||||
}
|
||||
|
||||
return true;
|
||||
};
|
||||
|
||||
URLStateMachine.prototype["parse scheme"] = function parseScheme(c, cStr) {
|
||||
if (isASCIIAlphanumeric(c) || c === 43 || c === 45 || c === 46) {
|
||||
this.buffer += cStr.toLowerCase();
|
||||
} else if (c === 58) {
|
||||
if (this.stateOverride) {
|
||||
if (isSpecial(this.url) && !isSpecialScheme(this.buffer)) {
|
||||
return false;
|
||||
}
|
||||
|
||||
if (!isSpecial(this.url) && isSpecialScheme(this.buffer)) {
|
||||
return false;
|
||||
}
|
||||
|
||||
if ((includesCredentials(this.url) || this.url.port !== null) && this.buffer === "file") {
|
||||
return false;
|
||||
}
|
||||
|
||||
if (this.url.scheme === "file" && (this.url.host === "" || this.url.host === null)) {
|
||||
return false;
|
||||
}
|
||||
}
|
||||
this.url.scheme = this.buffer;
|
||||
this.buffer = "";
|
||||
if (this.stateOverride) {
|
||||
return false;
|
||||
}
|
||||
if (this.url.scheme === "file") {
|
||||
if (this.input[this.pointer + 1] !== 47 || this.input[this.pointer + 2] !== 47) {
|
||||
this.parseError = true;
|
||||
}
|
||||
this.state = "file";
|
||||
} else if (isSpecial(this.url) && this.base !== null && this.base.scheme === this.url.scheme) {
|
||||
this.state = "special relative or authority";
|
||||
} else if (isSpecial(this.url)) {
|
||||
this.state = "special authority slashes";
|
||||
} else if (this.input[this.pointer + 1] === 47) {
|
||||
this.state = "path or authority";
|
||||
++this.pointer;
|
||||
} else {
|
||||
this.url.cannotBeABaseURL = true;
|
||||
this.url.path.push("");
|
||||
this.state = "cannot-be-a-base-URL path";
|
||||
}
|
||||
} else if (!this.stateOverride) {
|
||||
this.buffer = "";
|
||||
this.state = "no scheme";
|
||||
this.pointer = -1;
|
||||
} else {
|
||||
this.parseError = true;
|
||||
return failure;
|
||||
}
|
||||
|
||||
return true;
|
||||
};
|
||||
|
||||
URLStateMachine.prototype["parse no scheme"] = function parseNoScheme(c) {
|
||||
if (this.base === null || (this.base.cannotBeABaseURL && c !== 35)) {
|
||||
return failure;
|
||||
} else if (this.base.cannotBeABaseURL && c === 35) {
|
||||
this.url.scheme = this.base.scheme;
|
||||
this.url.path = this.base.path.slice();
|
||||
this.url.query = this.base.query;
|
||||
this.url.fragment = "";
|
||||
this.url.cannotBeABaseURL = true;
|
||||
this.state = "fragment";
|
||||
} else if (this.base.scheme === "file") {
|
||||
this.state = "file";
|
||||
--this.pointer;
|
||||
} else {
|
||||
this.state = "relative";
|
||||
--this.pointer;
|
||||
}
|
||||
|
||||
return true;
|
||||
};
|
||||
|
||||
URLStateMachine.prototype["parse special relative or authority"] = function parseSpecialRelativeOrAuthority(c) {
|
||||
if (c === 47 && this.input[this.pointer + 1] === 47) {
|
||||
this.state = "special authority ignore slashes";
|
||||
++this.pointer;
|
||||
} else {
|
||||
this.parseError = true;
|
||||
this.state = "relative";
|
||||
--this.pointer;
|
||||
}
|
||||
|
||||
return true;
|
||||
};
|
||||
|
||||
URLStateMachine.prototype["parse path or authority"] = function parsePathOrAuthority(c) {
|
||||
if (c === 47) {
|
||||
this.state = "authority";
|
||||
} else {
|
||||
this.state = "path";
|
||||
--this.pointer;
|
||||
}
|
||||
|
||||
return true;
|
||||
};
|
||||
|
||||
URLStateMachine.prototype["parse relative"] = function parseRelative(c) {
|
||||
this.url.scheme = this.base.scheme;
|
||||
if (isNaN(c)) {
|
||||
this.url.username = this.base.username;
|
||||
this.url.password = this.base.password;
|
||||
this.url.host = this.base.host;
|
||||
this.url.port = this.base.port;
|
||||
this.url.path = this.base.path.slice();
|
||||
this.url.query = this.base.query;
|
||||
} else if (c === 47) {
|
||||
this.state = "relative slash";
|
||||
} else if (c === 63) {
|
||||
this.url.username = this.base.username;
|
||||
this.url.password = this.base.password;
|
||||
this.url.host = this.base.host;
|
||||
this.url.port = this.base.port;
|
||||
this.url.path = this.base.path.slice();
|
||||
this.url.query = "";
|
||||
this.state = "query";
|
||||
} else if (c === 35) {
|
||||
this.url.username = this.base.username;
|
||||
this.url.password = this.base.password;
|
||||
this.url.host = this.base.host;
|
||||
this.url.port = this.base.port;
|
||||
this.url.path = this.base.path.slice();
|
||||
this.url.query = this.base.query;
|
||||
this.url.fragment = "";
|
||||
this.state = "fragment";
|
||||
} else if (isSpecial(this.url) && c === 92) {
|
||||
this.parseError = true;
|
||||
this.state = "relative slash";
|
||||
} else {
|
||||
this.url.username = this.base.username;
|
||||
this.url.password = this.base.password;
|
||||
this.url.host = this.base.host;
|
||||
this.url.port = this.base.port;
|
||||
this.url.path = this.base.path.slice(0, this.base.path.length - 1);
|
||||
|
||||
this.state = "path";
|
||||
--this.pointer;
|
||||
}
|
||||
|
||||
return true;
|
||||
};
|
||||
|
||||
URLStateMachine.prototype["parse relative slash"] = function parseRelativeSlash(c) {
|
||||
if (isSpecial(this.url) && (c === 47 || c === 92)) {
|
||||
if (c === 92) {
|
||||
this.parseError = true;
|
||||
}
|
||||
this.state = "special authority ignore slashes";
|
||||
} else if (c === 47) {
|
||||
this.state = "authority";
|
||||
} else {
|
||||
this.url.username = this.base.username;
|
||||
this.url.password = this.base.password;
|
||||
this.url.host = this.base.host;
|
||||
this.url.port = this.base.port;
|
||||
this.state = "path";
|
||||
--this.pointer;
|
||||
}
|
||||
|
||||
return true;
|
||||
};
|
||||
|
||||
URLStateMachine.prototype["parse special authority slashes"] = function parseSpecialAuthoritySlashes(c) {
|
||||
if (c === 47 && this.input[this.pointer + 1] === 47) {
|
||||
this.state = "special authority ignore slashes";
|
||||
++this.pointer;
|
||||
} else {
|
||||
this.parseError = true;
|
||||
this.state = "special authority ignore slashes";
|
||||
--this.pointer;
|
||||
}
|
||||
|
||||
return true;
|
||||
};
|
||||
|
||||
URLStateMachine.prototype["parse special authority ignore slashes"] = function parseSpecialAuthorityIgnoreSlashes(c) {
|
||||
if (c !== 47 && c !== 92) {
|
||||
this.state = "authority";
|
||||
--this.pointer;
|
||||
} else {
|
||||
this.parseError = true;
|
||||
}
|
||||
|
||||
return true;
|
||||
};
|
||||
|
||||
URLStateMachine.prototype["parse authority"] = function parseAuthority(c, cStr) {
|
||||
if (c === 64) {
|
||||
this.parseError = true;
|
||||
if (this.atFlag) {
|
||||
this.buffer = "%40" + this.buffer;
|
||||
}
|
||||
this.atFlag = true;
|
||||
|
||||
// careful, this is based on buffer and has its own pointer (this.pointer != pointer) and inner chars
|
||||
const len = countSymbols(this.buffer);
|
||||
for (let pointer = 0; pointer < len; ++pointer) {
|
||||
const codePoint = this.buffer.codePointAt(pointer);
|
||||
|
||||
if (codePoint === 58 && !this.passwordTokenSeenFlag) {
|
||||
this.passwordTokenSeenFlag = true;
|
||||
continue;
|
||||
}
|
||||
const encodedCodePoints = percentEncodeChar(codePoint, isUserinfoPercentEncode);
|
||||
if (this.passwordTokenSeenFlag) {
|
||||
this.url.password += encodedCodePoints;
|
||||
} else {
|
||||
this.url.username += encodedCodePoints;
|
||||
}
|
||||
}
|
||||
this.buffer = "";
|
||||
} else if (isNaN(c) || c === 47 || c === 63 || c === 35 ||
|
||||
(isSpecial(this.url) && c === 92)) {
|
||||
if (this.atFlag && this.buffer === "") {
|
||||
this.parseError = true;
|
||||
return failure;
|
||||
}
|
||||
this.pointer -= countSymbols(this.buffer) + 1;
|
||||
this.buffer = "";
|
||||
this.state = "host";
|
||||
} else {
|
||||
this.buffer += cStr;
|
||||
}
|
||||
|
||||
return true;
|
||||
};
|
||||
|
||||
URLStateMachine.prototype["parse hostname"] =
|
||||
URLStateMachine.prototype["parse host"] = function parseHostName(c, cStr) {
|
||||
if (this.stateOverride && this.url.scheme === "file") {
|
||||
--this.pointer;
|
||||
this.state = "file host";
|
||||
} else if (c === 58 && !this.arrFlag) {
|
||||
if (this.buffer === "") {
|
||||
this.parseError = true;
|
||||
return failure;
|
||||
}
|
||||
|
||||
const host = parseHost(this.buffer, isSpecial(this.url));
|
||||
if (host === failure) {
|
||||
return failure;
|
||||
}
|
||||
|
||||
this.url.host = host;
|
||||
this.buffer = "";
|
||||
this.state = "port";
|
||||
if (this.stateOverride === "hostname") {
|
||||
return false;
|
||||
}
|
||||
} else if (isNaN(c) || c === 47 || c === 63 || c === 35 ||
|
||||
(isSpecial(this.url) && c === 92)) {
|
||||
--this.pointer;
|
||||
if (isSpecial(this.url) && this.buffer === "") {
|
||||
this.parseError = true;
|
||||
return failure;
|
||||
} else if (this.stateOverride && this.buffer === "" &&
|
||||
(includesCredentials(this.url) || this.url.port !== null)) {
|
||||
this.parseError = true;
|
||||
return false;
|
||||
}
|
||||
|
||||
const host = parseHost(this.buffer, isSpecial(this.url));
|
||||
if (host === failure) {
|
||||
return failure;
|
||||
}
|
||||
|
||||
this.url.host = host;
|
||||
this.buffer = "";
|
||||
this.state = "path start";
|
||||
if (this.stateOverride) {
|
||||
return false;
|
||||
}
|
||||
} else {
|
||||
if (c === 91) {
|
||||
this.arrFlag = true;
|
||||
} else if (c === 93) {
|
||||
this.arrFlag = false;
|
||||
}
|
||||
this.buffer += cStr;
|
||||
}
|
||||
|
||||
return true;
|
||||
};
|
||||
|
||||
URLStateMachine.prototype["parse port"] = function parsePort(c, cStr) {
|
||||
if (isASCIIDigit(c)) {
|
||||
this.buffer += cStr;
|
||||
} else if (isNaN(c) || c === 47 || c === 63 || c === 35 ||
|
||||
(isSpecial(this.url) && c === 92) ||
|
||||
this.stateOverride) {
|
||||
if (this.buffer !== "") {
|
||||
const port = parseInt(this.buffer);
|
||||
if (port > Math.pow(2, 16) - 1) {
|
||||
this.parseError = true;
|
||||
return failure;
|
||||
}
|
||||
this.url.port = port === defaultPort(this.url.scheme) ? null : port;
|
||||
this.buffer = "";
|
||||
}
|
||||
if (this.stateOverride) {
|
||||
return false;
|
||||
}
|
||||
this.state = "path start";
|
||||
--this.pointer;
|
||||
} else {
|
||||
this.parseError = true;
|
||||
return failure;
|
||||
}
|
||||
|
||||
return true;
|
||||
};
|
||||
|
||||
const fileOtherwiseCodePoints = new Set([47, 92, 63, 35]);
|
||||
|
||||
URLStateMachine.prototype["parse file"] = function parseFile(c) {
|
||||
this.url.scheme = "file";
|
||||
|
||||
if (c === 47 || c === 92) {
|
||||
if (c === 92) {
|
||||
this.parseError = true;
|
||||
}
|
||||
this.state = "file slash";
|
||||
} else if (this.base !== null && this.base.scheme === "file") {
|
||||
if (isNaN(c)) {
|
||||
this.url.host = this.base.host;
|
||||
this.url.path = this.base.path.slice();
|
||||
this.url.query = this.base.query;
|
||||
} else if (c === 63) {
|
||||
this.url.host = this.base.host;
|
||||
this.url.path = this.base.path.slice();
|
||||
this.url.query = "";
|
||||
this.state = "query";
|
||||
} else if (c === 35) {
|
||||
this.url.host = this.base.host;
|
||||
this.url.path = this.base.path.slice();
|
||||
this.url.query = this.base.query;
|
||||
this.url.fragment = "";
|
||||
this.state = "fragment";
|
||||
} else {
|
||||
if (this.input.length - this.pointer - 1 === 0 || // remaining consists of 0 code points
|
||||
!isWindowsDriveLetterCodePoints(c, this.input[this.pointer + 1]) ||
|
||||
(this.input.length - this.pointer - 1 >= 2 && // remaining has at least 2 code points
|
||||
!fileOtherwiseCodePoints.has(this.input[this.pointer + 2]))) {
|
||||
this.url.host = this.base.host;
|
||||
this.url.path = this.base.path.slice();
|
||||
shortenPath(this.url);
|
||||
} else {
|
||||
this.parseError = true;
|
||||
}
|
||||
|
||||
this.state = "path";
|
||||
--this.pointer;
|
||||
}
|
||||
} else {
|
||||
this.state = "path";
|
||||
--this.pointer;
|
||||
}
|
||||
|
||||
return true;
|
||||
};
|
||||
|
||||
URLStateMachine.prototype["parse file slash"] = function parseFileSlash(c) {
|
||||
if (c === 47 || c === 92) {
|
||||
if (c === 92) {
|
||||
this.parseError = true;
|
||||
}
|
||||
this.state = "file host";
|
||||
} else {
|
||||
if (this.base !== null && this.base.scheme === "file") {
|
||||
if (isNormalizedWindowsDriveLetterString(this.base.path[0])) {
|
||||
this.url.path.push(this.base.path[0]);
|
||||
} else {
|
||||
this.url.host = this.base.host;
|
||||
}
|
||||
}
|
||||
this.state = "path";
|
||||
--this.pointer;
|
||||
}
|
||||
|
||||
return true;
|
||||
};
|
||||
|
||||
URLStateMachine.prototype["parse file host"] = function parseFileHost(c, cStr) {
|
||||
if (isNaN(c) || c === 47 || c === 92 || c === 63 || c === 35) {
|
||||
--this.pointer;
|
||||
if (!this.stateOverride && isWindowsDriveLetterString(this.buffer)) {
|
||||
this.parseError = true;
|
||||
this.state = "path";
|
||||
} else if (this.buffer === "") {
|
||||
this.url.host = "";
|
||||
if (this.stateOverride) {
|
||||
return false;
|
||||
}
|
||||
this.state = "path start";
|
||||
} else {
|
||||
let host = parseHost(this.buffer, isSpecial(this.url));
|
||||
if (host === failure) {
|
||||
return failure;
|
||||
}
|
||||
if (host === "localhost") {
|
||||
host = "";
|
||||
}
|
||||
this.url.host = host;
|
||||
|
||||
if (this.stateOverride) {
|
||||
return false;
|
||||
}
|
||||
|
||||
this.buffer = "";
|
||||
this.state = "path start";
|
||||
}
|
||||
} else {
|
||||
this.buffer += cStr;
|
||||
}
|
||||
|
||||
return true;
|
||||
};
|
||||
|
||||
URLStateMachine.prototype["parse path start"] = function parsePathStart(c) {
|
||||
if (isSpecial(this.url)) {
|
||||
if (c === 92) {
|
||||
this.parseError = true;
|
||||
}
|
||||
this.state = "path";
|
||||
|
||||
if (c !== 47 && c !== 92) {
|
||||
--this.pointer;
|
||||
}
|
||||
} else if (!this.stateOverride && c === 63) {
|
||||
this.url.query = "";
|
||||
this.state = "query";
|
||||
} else if (!this.stateOverride && c === 35) {
|
||||
this.url.fragment = "";
|
||||
this.state = "fragment";
|
||||
} else if (c !== undefined) {
|
||||
this.state = "path";
|
||||
if (c !== 47) {
|
||||
--this.pointer;
|
||||
}
|
||||
}
|
||||
|
||||
return true;
|
||||
};
|
||||
|
||||
URLStateMachine.prototype["parse path"] = function parsePath(c) {
|
||||
if (isNaN(c) || c === 47 || (isSpecial(this.url) && c === 92) ||
|
||||
(!this.stateOverride && (c === 63 || c === 35))) {
|
||||
if (isSpecial(this.url) && c === 92) {
|
||||
this.parseError = true;
|
||||
}
|
||||
|
||||
if (isDoubleDot(this.buffer)) {
|
||||
shortenPath(this.url);
|
||||
if (c !== 47 && !(isSpecial(this.url) && c === 92)) {
|
||||
this.url.path.push("");
|
||||
}
|
||||
} else if (isSingleDot(this.buffer) && c !== 47 &&
|
||||
!(isSpecial(this.url) && c === 92)) {
|
||||
this.url.path.push("");
|
||||
} else if (!isSingleDot(this.buffer)) {
|
||||
if (this.url.scheme === "file" && this.url.path.length === 0 && isWindowsDriveLetterString(this.buffer)) {
|
||||
if (this.url.host !== "" && this.url.host !== null) {
|
||||
this.parseError = true;
|
||||
this.url.host = "";
|
||||
}
|
||||
this.buffer = this.buffer[0] + ":";
|
||||
}
|
||||
this.url.path.push(this.buffer);
|
||||
}
|
||||
this.buffer = "";
|
||||
if (this.url.scheme === "file" && (c === undefined || c === 63 || c === 35)) {
|
||||
while (this.url.path.length > 1 && this.url.path[0] === "") {
|
||||
this.parseError = true;
|
||||
this.url.path.shift();
|
||||
}
|
||||
}
|
||||
if (c === 63) {
|
||||
this.url.query = "";
|
||||
this.state = "query";
|
||||
}
|
||||
if (c === 35) {
|
||||
this.url.fragment = "";
|
||||
this.state = "fragment";
|
||||
}
|
||||
} else {
|
||||
// TODO: If c is not a URL code point and not "%", parse error.
|
||||
|
||||
if (c === 37 &&
|
||||
(!isASCIIHex(this.input[this.pointer + 1]) ||
|
||||
!isASCIIHex(this.input[this.pointer + 2]))) {
|
||||
this.parseError = true;
|
||||
}
|
||||
|
||||
this.buffer += percentEncodeChar(c, isPathPercentEncode);
|
||||
}
|
||||
|
||||
return true;
|
||||
};
|
||||
|
||||
URLStateMachine.prototype["parse cannot-be-a-base-URL path"] = function parseCannotBeABaseURLPath(c) {
|
||||
if (c === 63) {
|
||||
this.url.query = "";
|
||||
this.state = "query";
|
||||
} else if (c === 35) {
|
||||
this.url.fragment = "";
|
||||
this.state = "fragment";
|
||||
} else {
|
||||
// TODO: Add: not a URL code point
|
||||
if (!isNaN(c) && c !== 37) {
|
||||
this.parseError = true;
|
||||
}
|
||||
|
||||
if (c === 37 &&
|
||||
(!isASCIIHex(this.input[this.pointer + 1]) ||
|
||||
!isASCIIHex(this.input[this.pointer + 2]))) {
|
||||
this.parseError = true;
|
||||
}
|
||||
|
||||
if (!isNaN(c)) {
|
||||
this.url.path[0] = this.url.path[0] + percentEncodeChar(c, isC0ControlPercentEncode);
|
||||
}
|
||||
}
|
||||
|
||||
return true;
|
||||
};
|
||||
|
||||
URLStateMachine.prototype["parse query"] = function parseQuery(c, cStr) {
|
||||
if (isNaN(c) || (!this.stateOverride && c === 35)) {
|
||||
if (!isSpecial(this.url) || this.url.scheme === "ws" || this.url.scheme === "wss") {
|
||||
this.encodingOverride = "utf-8";
|
||||
}
|
||||
|
||||
const buffer = new Buffer(this.buffer); // TODO: Use encoding override instead
|
||||
for (let i = 0; i < buffer.length; ++i) {
|
||||
if (buffer[i] < 0x21 || buffer[i] > 0x7E || buffer[i] === 0x22 || buffer[i] === 0x23 ||
|
||||
buffer[i] === 0x3C || buffer[i] === 0x3E) {
|
||||
this.url.query += percentEncode(buffer[i]);
|
||||
} else {
|
||||
this.url.query += String.fromCodePoint(buffer[i]);
|
||||
}
|
||||
}
|
||||
|
||||
this.buffer = "";
|
||||
if (c === 35) {
|
||||
this.url.fragment = "";
|
||||
this.state = "fragment";
|
||||
}
|
||||
} else {
|
||||
// TODO: If c is not a URL code point and not "%", parse error.
|
||||
if (c === 37 &&
|
||||
(!isASCIIHex(this.input[this.pointer + 1]) ||
|
||||
!isASCIIHex(this.input[this.pointer + 2]))) {
|
||||
this.parseError = true;
|
||||
}
|
||||
|
||||
this.buffer += cStr;
|
||||
}
|
||||
|
||||
return true;
|
||||
};
|
||||
|
||||
URLStateMachine.prototype["parse fragment"] = function parseFragment(c) {
|
||||
if (isNaN(c)) { // do nothing
|
||||
} else if (c === 0x0) {
|
||||
this.parseError = true;
|
||||
} else {
|
||||
// TODO: If c is not a URL code point and not "%", parse error.
|
||||
if (c === 37 &&
|
||||
(!isASCIIHex(this.input[this.pointer + 1]) ||
|
||||
!isASCIIHex(this.input[this.pointer + 2]))) {
|
||||
this.parseError = true;
|
||||
}
|
||||
|
||||
this.url.fragment += percentEncodeChar(c, isC0ControlPercentEncode);
|
||||
}
|
||||
|
||||
return true;
|
||||
};
|
||||
|
||||
function serializeURL(url, excludeFragment) {
|
||||
let output = url.scheme + ":";
|
||||
if (url.host !== null) {
|
||||
output += "//";
|
||||
|
||||
if (url.username !== "" || url.password !== "") {
|
||||
output += url.username;
|
||||
if (url.password !== "") {
|
||||
output += ":" + url.password;
|
||||
}
|
||||
output += "@";
|
||||
}
|
||||
|
||||
output += serializeHost(url.host);
|
||||
|
||||
if (url.port !== null) {
|
||||
output += ":" + url.port;
|
||||
}
|
||||
} else if (url.host === null && url.scheme === "file") {
|
||||
output += "//";
|
||||
}
|
||||
|
||||
if (url.cannotBeABaseURL) {
|
||||
output += url.path[0];
|
||||
} else {
|
||||
for (const string of url.path) {
|
||||
output += "/" + string;
|
||||
}
|
||||
}
|
||||
|
||||
if (url.query !== null) {
|
||||
output += "?" + url.query;
|
||||
}
|
||||
|
||||
if (!excludeFragment && url.fragment !== null) {
|
||||
output += "#" + url.fragment;
|
||||
}
|
||||
|
||||
return output;
|
||||
}
|
||||
|
||||
function serializeOrigin(tuple) {
|
||||
let result = tuple.scheme + "://";
|
||||
result += serializeHost(tuple.host);
|
||||
|
||||
if (tuple.port !== null) {
|
||||
result += ":" + tuple.port;
|
||||
}
|
||||
|
||||
return result;
|
||||
}
|
||||
|
||||
module.exports.serializeURL = serializeURL;
|
||||
|
||||
module.exports.serializeURLOrigin = function (url) {
|
||||
// https://url.spec.whatwg.org/#concept-url-origin
|
||||
switch (url.scheme) {
|
||||
case "blob":
|
||||
try {
|
||||
return module.exports.serializeURLOrigin(module.exports.parseURL(url.path[0]));
|
||||
} catch (e) {
|
||||
// serializing an opaque origin returns "null"
|
||||
return "null";
|
||||
}
|
||||
case "ftp":
|
||||
case "gopher":
|
||||
case "http":
|
||||
case "https":
|
||||
case "ws":
|
||||
case "wss":
|
||||
return serializeOrigin({
|
||||
scheme: url.scheme,
|
||||
host: url.host,
|
||||
port: url.port
|
||||
});
|
||||
case "file":
|
||||
// spec says "exercise to the reader", chrome says "file://"
|
||||
return "file://";
|
||||
default:
|
||||
// serializing an opaque origin returns "null"
|
||||
return "null";
|
||||
}
|
||||
};
|
||||
|
||||
module.exports.basicURLParse = function (input, options) {
|
||||
if (options === undefined) {
|
||||
options = {};
|
||||
}
|
||||
|
||||
const usm = new URLStateMachine(input, options.baseURL, options.encodingOverride, options.url, options.stateOverride);
|
||||
if (usm.failure) {
|
||||
return "failure";
|
||||
}
|
||||
|
||||
return usm.url;
|
||||
};
|
||||
|
||||
module.exports.setTheUsername = function (url, username) {
|
||||
url.username = "";
|
||||
const decoded = punycode.ucs2.decode(username);
|
||||
for (let i = 0; i < decoded.length; ++i) {
|
||||
url.username += percentEncodeChar(decoded[i], isUserinfoPercentEncode);
|
||||
}
|
||||
};
|
||||
|
||||
module.exports.setThePassword = function (url, password) {
|
||||
url.password = "";
|
||||
const decoded = punycode.ucs2.decode(password);
|
||||
for (let i = 0; i < decoded.length; ++i) {
|
||||
url.password += percentEncodeChar(decoded[i], isUserinfoPercentEncode);
|
||||
}
|
||||
};
|
||||
|
||||
module.exports.serializeHost = serializeHost;
|
||||
|
||||
module.exports.cannotHaveAUsernamePasswordPort = cannotHaveAUsernamePasswordPort;
|
||||
|
||||
module.exports.serializeInteger = function (integer) {
|
||||
return String(integer);
|
||||
};
|
||||
|
||||
module.exports.parseURL = function (input, options) {
|
||||
if (options === undefined) {
|
||||
options = {};
|
||||
}
|
||||
|
||||
// We don't handle blobs, so this just delegates:
|
||||
return module.exports.basicURLParse(input, { baseURL: options.baseURL, encodingOverride: options.encodingOverride });
|
||||
};
|
||||
|
||||
const punycode = __nccwpck_require__(5477);
|
||||
const tr46 = __nccwpck_require__(2299);
|
||||
|
||||
const specialSchemes = {
|
||||
ftp: 21,
|
||||
file: null,
|
||||
gopher: 70,
|
||||
http: 80,
|
||||
https: 443,
|
||||
ws: 80,
|
||||
wss: 443
|
||||
};
|
||||
|
||||
const failure = Symbol("failure");
|
||||
|
||||
function countSymbols(str) {
|
||||
return punycode.ucs2.decode(str).length;
|
||||
}
|
||||
|
||||
function at(input, idx) {
|
||||
const c = input[idx];
|
||||
return isNaN(c) ? undefined : String.fromCodePoint(c);
|
||||
}
|
||||
|
||||
function isASCIIDigit(c) {
|
||||
return c >= 0x30 && c <= 0x39;
|
||||
}
|
||||
|
||||
function isASCIIAlpha(c) {
|
||||
return (c >= 0x41 && c <= 0x5A) || (c >= 0x61 && c <= 0x7A);
|
||||
}
|
||||
|
||||
function isASCIIAlphanumeric(c) {
|
||||
return isASCIIAlpha(c) || isASCIIDigit(c);
|
||||
}
|
||||
|
||||
function isASCIIHex(c) {
|
||||
return isASCIIDigit(c) || (c >= 0x41 && c <= 0x46) || (c >= 0x61 && c <= 0x66);
|
||||
}
|
||||
|
||||
function isSingleDot(buffer) {
|
||||
return buffer === "." || buffer.toLowerCase() === "%2e";
|
||||
}
|
||||
|
||||
function isDoubleDot(buffer) {
|
||||
buffer = buffer.toLowerCase();
|
||||
return buffer === ".." || buffer === "%2e." || buffer === ".%2e" || buffer === "%2e%2e";
|
||||
}
|
||||
|
||||
function isWindowsDriveLetterCodePoints(cp1, cp2) {
|
||||
return isASCIIAlpha(cp1) && (cp2 === 58 || cp2 === 124);
|
||||
}
|
||||
|
||||
function isWindowsDriveLetterString(string) {
|
||||
return string.length === 2 && isASCIIAlpha(string.codePointAt(0)) && (string[1] === ":" || string[1] === "|");
|
||||
}
|
||||
|
||||
function isNormalizedWindowsDriveLetterString(string) {
|
||||
return string.length === 2 && isASCIIAlpha(string.codePointAt(0)) && string[1] === ":";
|
||||
}
|
||||
|
||||
function containsForbiddenHostCodePoint(string) {
|
||||
return string.search(/\u0000|\u0009|\u000A|\u000D|\u0020|#|%|\/|:|\?|@|\[|\\|\]/) !== -1;
|
||||
}
|
||||
|
||||
function containsForbiddenHostCodePointExcludingPercent(string) {
|
||||
return string.search(/\u0000|\u0009|\u000A|\u000D|\u0020|#|\/|:|\?|@|\[|\\|\]/) !== -1;
|
||||
}
|
||||
|
||||
function isSpecialScheme(scheme) {
|
||||
return specialSchemes[scheme] !== undefined;
|
||||
}
|
||||
|
||||
function isSpecial(url) {
|
||||
return isSpecialScheme(url.scheme);
|
||||
}
|
||||
|
||||
function defaultPort(scheme) {
|
||||
return specialSchemes[scheme];
|
||||
}
|
||||
|
||||
function percentEncode(c) {
|
||||
let hex = c.toString(16).toUpperCase();
|
||||
if (hex.length === 1) {
|
||||
hex = "0" + hex;
|
||||
}
|
||||
|
||||
return "%" + hex;
|
||||
}
|
||||
|
||||
function utf8PercentEncode(c) {
|
||||
const buf = new Buffer(c);
|
||||
|
||||
let str = "";
|
||||
|
||||
for (let i = 0; i < buf.length; ++i) {
|
||||
str += percentEncode(buf[i]);
|
||||
}
|
||||
|
||||
return str;
|
||||
}
|
||||
|
||||
function utf8PercentDecode(str) {
|
||||
const input = new Buffer(str);
|
||||
const output = [];
|
||||
for (let i = 0; i < input.length; ++i) {
|
||||
if (input[i] !== 37) {
|
||||
output.push(input[i]);
|
||||
} else if (input[i] === 37 && isASCIIHex(input[i + 1]) && isASCIIHex(input[i + 2])) {
|
||||
output.push(parseInt(input.slice(i + 1, i + 3).toString(), 16));
|
||||
i += 2;
|
||||
} else {
|
||||
output.push(input[i]);
|
||||
}
|
||||
}
|
||||
return new Buffer(output).toString();
|
||||
}
|
||||
|
||||
function isC0ControlPercentEncode(c) {
|
||||
return c <= 0x1F || c > 0x7E;
|
||||
}
|
||||
|
||||
const extraPathPercentEncodeSet = new Set([32, 34, 35, 60, 62, 63, 96, 123, 125]);
|
||||
function isPathPercentEncode(c) {
|
||||
return isC0ControlPercentEncode(c) || extraPathPercentEncodeSet.has(c);
|
||||
}
|
||||
|
||||
const extraUserinfoPercentEncodeSet =
|
||||
new Set([47, 58, 59, 61, 64, 91, 92, 93, 94, 124]);
|
||||
function isUserinfoPercentEncode(c) {
|
||||
return isPathPercentEncode(c) || extraUserinfoPercentEncodeSet.has(c);
|
||||
}
|
||||
|
||||
function percentEncodeChar(c, encodeSetPredicate) {
|
||||
const cStr = String.fromCodePoint(c);
|
||||
|
||||
if (encodeSetPredicate(c)) {
|
||||
return utf8PercentEncode(cStr);
|
||||
}
|
||||
|
||||
return cStr;
|
||||
}
|
||||
|
||||
function parseIPv4Number(input) {
|
||||
let R = 10;
|
||||
|
||||
if (input.length >= 2 && input.charAt(0) === "0" && input.charAt(1).toLowerCase() === "x") {
|
||||
input = input.substring(2);
|
||||
R = 16;
|
||||
} else if (input.length >= 2 && input.charAt(0) === "0") {
|
||||
input = input.substring(1);
|
||||
R = 8;
|
||||
}
|
||||
|
||||
if (input === "") {
|
||||
return 0;
|
||||
}
|
||||
|
||||
const regex = R === 10 ? /[^0-9]/ : (R === 16 ? /[^0-9A-Fa-f]/ : /[^0-7]/);
|
||||
if (regex.test(input)) {
|
||||
return failure;
|
||||
}
|
||||
|
||||
return parseInt(input, R);
|
||||
}
|
||||
|
||||
function parseIPv4(input) {
|
||||
const parts = input.split(".");
|
||||
if (parts[parts.length - 1] === "") {
|
||||
if (parts.length > 1) {
|
||||
parts.pop();
|
||||
}
|
||||
}
|
||||
|
||||
if (parts.length > 4) {
|
||||
return input;
|
||||
}
|
||||
|
||||
const numbers = [];
|
||||
for (const part of parts) {
|
||||
if (part === "") {
|
||||
return input;
|
||||
}
|
||||
const n = parseIPv4Number(part);
|
||||
if (n === failure) {
|
||||
return input;
|
||||
}
|
||||
|
||||
numbers.push(n);
|
||||
}
|
||||
|
||||
for (let i = 0; i < numbers.length - 1; ++i) {
|
||||
if (numbers[i] > 255) {
|
||||
return failure;
|
||||
}
|
||||
}
|
||||
if (numbers[numbers.length - 1] >= Math.pow(256, 5 - numbers.length)) {
|
||||
return failure;
|
||||
}
|
||||
|
||||
let ipv4 = numbers.pop();
|
||||
let counter = 0;
|
||||
|
||||
for (const n of numbers) {
|
||||
ipv4 += n * Math.pow(256, 3 - counter);
|
||||
++counter;
|
||||
}
|
||||
|
||||
return ipv4;
|
||||
}
|
||||
|
||||
function serializeIPv4(address) {
|
||||
let output = "";
|
||||
let n = address;
|
||||
|
||||
for (let i = 1; i <= 4; ++i) {
|
||||
output = String(n % 256) + output;
|
||||
if (i !== 4) {
|
||||
output = "." + output;
|
||||
}
|
||||
n = Math.floor(n / 256);
|
||||
}
|
||||
|
||||
return output;
|
||||
}
|
||||
|
||||
function parseIPv6(input) {
|
||||
const address = [0, 0, 0, 0, 0, 0, 0, 0];
|
||||
let pieceIndex = 0;
|
||||
let compress = null;
|
||||
let pointer = 0;
|
||||
|
||||
input = punycode.ucs2.decode(input);
|
||||
|
||||
if (input[pointer] === 58) {
|
||||
if (input[pointer + 1] !== 58) {
|
||||
return failure;
|
||||
}
|
||||
|
||||
pointer += 2;
|
||||
++pieceIndex;
|
||||
compress = pieceIndex;
|
||||
}
|
||||
|
||||
while (pointer < input.length) {
|
||||
if (pieceIndex === 8) {
|
||||
return failure;
|
||||
}
|
||||
|
||||
if (input[pointer] === 58) {
|
||||
if (compress !== null) {
|
||||
return failure;
|
||||
}
|
||||
++pointer;
|
||||
++pieceIndex;
|
||||
compress = pieceIndex;
|
||||
continue;
|
||||
}
|
||||
|
||||
let value = 0;
|
||||
let length = 0;
|
||||
|
||||
while (length < 4 && isASCIIHex(input[pointer])) {
|
||||
value = value * 0x10 + parseInt(at(input, pointer), 16);
|
||||
++pointer;
|
||||
++length;
|
||||
}
|
||||
|
||||
if (input[pointer] === 46) {
|
||||
if (length === 0) {
|
||||
return failure;
|
||||
}
|
||||
|
||||
pointer -= length;
|
||||
|
||||
if (pieceIndex > 6) {
|
||||
return failure;
|
||||
}
|
||||
|
||||
let numbersSeen = 0;
|
||||
|
||||
while (input[pointer] !== undefined) {
|
||||
let ipv4Piece = null;
|
||||
|
||||
if (numbersSeen > 0) {
|
||||
if (input[pointer] === 46 && numbersSeen < 4) {
|
||||
++pointer;
|
||||
} else {
|
||||
return failure;
|
||||
}
|
||||
}
|
||||
|
||||
if (!isASCIIDigit(input[pointer])) {
|
||||
return failure;
|
||||
}
|
||||
|
||||
while (isASCIIDigit(input[pointer])) {
|
||||
const number = parseInt(at(input, pointer));
|
||||
if (ipv4Piece === null) {
|
||||
ipv4Piece = number;
|
||||
} else if (ipv4Piece === 0) {
|
||||
return failure;
|
||||
} else {
|
||||
ipv4Piece = ipv4Piece * 10 + number;
|
||||
}
|
||||
if (ipv4Piece > 255) {
|
||||
return failure;
|
||||
}
|
||||
++pointer;
|
||||
}
|
||||
|
||||
address[pieceIndex] = address[pieceIndex] * 0x100 + ipv4Piece;
|
||||
|
||||
++numbersSeen;
|
||||
|
||||
if (numbersSeen === 2 || numbersSeen === 4) {
|
||||
++pieceIndex;
|
||||
}
|
||||
}
|
||||
|
||||
if (numbersSeen !== 4) {
|
||||
return failure;
|
||||
}
|
||||
|
||||
break;
|
||||
} else if (input[pointer] === 58) {
|
||||
++pointer;
|
||||
if (input[pointer] === undefined) {
|
||||
return failure;
|
||||
}
|
||||
} else if (input[pointer] !== undefined) {
|
||||
return failure;
|
||||
}
|
||||
|
||||
address[pieceIndex] = value;
|
||||
++pieceIndex;
|
||||
}
|
||||
|
||||
if (compress !== null) {
|
||||
let swaps = pieceIndex - compress;
|
||||
pieceIndex = 7;
|
||||
while (pieceIndex !== 0 && swaps > 0) {
|
||||
const temp = address[compress + swaps - 1];
|
||||
address[compress + swaps - 1] = address[pieceIndex];
|
||||
address[pieceIndex] = temp;
|
||||
--pieceIndex;
|
||||
--swaps;
|
||||
}
|
||||
} else if (compress === null && pieceIndex !== 8) {
|
||||
return failure;
|
||||
}
|
||||
|
||||
return address;
|
||||
}
|
||||
|
||||
function serializeIPv6(address) {
|
||||
let output = "";
|
||||
const seqResult = findLongestZeroSequence(address);
|
||||
const compress = seqResult.idx;
|
||||
let ignore0 = false;
|
||||
|
||||
for (let pieceIndex = 0; pieceIndex <= 7; ++pieceIndex) {
|
||||
if (ignore0 && address[pieceIndex] === 0) {
|
||||
continue;
|
||||
} else if (ignore0) {
|
||||
ignore0 = false;
|
||||
}
|
||||
|
||||
if (compress === pieceIndex) {
|
||||
const separator = pieceIndex === 0 ? "::" : ":";
|
||||
output += separator;
|
||||
ignore0 = true;
|
||||
continue;
|
||||
}
|
||||
|
||||
output += address[pieceIndex].toString(16);
|
||||
|
||||
if (pieceIndex !== 7) {
|
||||
output += ":";
|
||||
}
|
||||
}
|
||||
|
||||
return output;
|
||||
}
|
||||
|
||||
function parseHost(input, isSpecialArg) {
|
||||
if (input[0] === "[") {
|
||||
if (input[input.length - 1] !== "]") {
|
||||
return failure;
|
||||
}
|
||||
|
||||
return parseIPv6(input.substring(1, input.length - 1));
|
||||
}
|
||||
|
||||
if (!isSpecialArg) {
|
||||
return parseOpaqueHost(input);
|
||||
}
|
||||
|
||||
const domain = utf8PercentDecode(input);
|
||||
const asciiDomain = tr46.toASCII(domain, false, tr46.PROCESSING_OPTIONS.NONTRANSITIONAL, false);
|
||||
if (asciiDomain === null) {
|
||||
return failure;
|
||||
}
|
||||
|
||||
if (containsForbiddenHostCodePoint(asciiDomain)) {
|
||||
return failure;
|
||||
}
|
||||
|
||||
const ipv4Host = parseIPv4(asciiDomain);
|
||||
if (typeof ipv4Host === "number" || ipv4Host === failure) {
|
||||
return ipv4Host;
|
||||
}
|
||||
|
||||
return asciiDomain;
|
||||
}
|
||||
|
||||
function parseOpaqueHost(input) {
|
||||
if (containsForbiddenHostCodePointExcludingPercent(input)) {
|
||||
return failure;
|
||||
}
|
||||
|
||||
let output = "";
|
||||
const decoded = punycode.ucs2.decode(input);
|
||||
for (let i = 0; i < decoded.length; ++i) {
|
||||
output += percentEncodeChar(decoded[i], isC0ControlPercentEncode);
|
||||
}
|
||||
return output;
|
||||
}
|
||||
|
||||
function findLongestZeroSequence(arr) {
|
||||
let maxIdx = null;
|
||||
let maxLen = 1; // only find elements > 1
|
||||
let currStart = null;
|
||||
let currLen = 0;
|
||||
|
||||
for (let i = 0; i < arr.length; ++i) {
|
||||
if (arr[i] !== 0) {
|
||||
if (currLen > maxLen) {
|
||||
maxIdx = currStart;
|
||||
maxLen = currLen;
|
||||
}
|
||||
|
||||
currStart = null;
|
||||
currLen = 0;
|
||||
} else {
|
||||
if (currStart === null) {
|
||||
currStart = i;
|
||||
}
|
||||
++currLen;
|
||||
}
|
||||
}
|
||||
|
||||
// if trailing zeros
|
||||
if (currLen > maxLen) {
|
||||
maxIdx = currStart;
|
||||
maxLen = currLen;
|
||||
}
|
||||
|
||||
return {
|
||||
idx: maxIdx,
|
||||
len: maxLen
|
||||
};
|
||||
}
|
||||
|
||||
function serializeHost(host) {
|
||||
if (typeof host === "number") {
|
||||
return serializeIPv4(host);
|
||||
}
|
||||
|
||||
// IPv6 serializer
|
||||
if (host instanceof Array) {
|
||||
return "[" + serializeIPv6(host) + "]";
|
||||
}
|
||||
|
||||
return host;
|
||||
}
|
||||
|
||||
function trimControlChars(url) {
|
||||
return url.replace(/^[\u0000-\u001F\u0020]+|[\u0000-\u001F\u0020]+$/g, "");
|
||||
}
|
||||
|
||||
function trimTabAndNewline(url) {
|
||||
return url.replace(/\u0009|\u000A|\u000D/g, "");
|
||||
}
|
||||
|
||||
function shortenPath(url) {
|
||||
const path = url.path;
|
||||
if (path.length === 0) {
|
||||
return;
|
||||
}
|
||||
if (url.scheme === "file" && path.length === 1 && isNormalizedWindowsDriveLetter(path[0])) {
|
||||
return;
|
||||
}
|
||||
|
||||
path.pop();
|
||||
}
|
||||
|
||||
function includesCredentials(url) {
|
||||
return url.username !== "" || url.password !== "";
|
||||
}
|
||||
|
||||
function cannotHaveAUsernamePasswordPort(url) {
|
||||
return url.host === null || url.host === "" || url.cannotBeABaseURL || url.scheme === "file";
|
||||
}
|
||||
|
||||
function isNormalizedWindowsDriveLetter(string) {
|
||||
return /^[A-Za-z]:$/.test(string);
|
||||
}
|
||||
|
||||
function URLStateMachine(input, base, encodingOverride, url, stateOverride) {
|
||||
this.pointer = 0;
|
||||
this.input = input;
|
||||
this.base = base || null;
|
||||
this.encodingOverride = encodingOverride || "utf-8";
|
||||
this.stateOverride = stateOverride;
|
||||
this.url = url;
|
||||
this.failure = false;
|
||||
this.parseError = false;
|
||||
|
||||
if (!this.url) {
|
||||
this.url = {
|
||||
scheme: "",
|
||||
username: "",
|
||||
password: "",
|
||||
host: null,
|
||||
port: null,
|
||||
path: [],
|
||||
query: null,
|
||||
fragment: null,
|
||||
|
||||
cannotBeABaseURL: false
|
||||
};
|
||||
|
||||
const res = trimControlChars(this.input);
|
||||
if (res !== this.input) {
|
||||
this.parseError = true;
|
||||
}
|
||||
this.input = res;
|
||||
}
|
||||
|
||||
const res = trimTabAndNewline(this.input);
|
||||
if (res !== this.input) {
|
||||
this.parseError = true;
|
||||
}
|
||||
this.input = res;
|
||||
|
||||
this.state = stateOverride || "scheme start";
|
||||
|
||||
this.buffer = "";
|
||||
this.atFlag = false;
|
||||
this.arrFlag = false;
|
||||
this.passwordTokenSeenFlag = false;
|
||||
|
||||
this.input = punycode.ucs2.decode(this.input);
|
||||
|
||||
for (; this.pointer <= this.input.length; ++this.pointer) {
|
||||
const c = this.input[this.pointer];
|
||||
const cStr = isNaN(c) ? undefined : String.fromCodePoint(c);
|
||||
|
||||
// exec state machine
|
||||
const ret = this["parse " + this.state](c, cStr);
|
||||
if (!ret) {
|
||||
break; // terminate algorithm
|
||||
} else if (ret === failure) {
|
||||
this.failure = true;
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
URLStateMachine.prototype["parse scheme start"] = function parseSchemeStart(c, cStr) {
|
||||
if (isASCIIAlpha(c)) {
|
||||
this.buffer += cStr.toLowerCase();
|
||||
this.state = "scheme";
|
||||
} else if (!this.stateOverride) {
|
||||
this.state = "no scheme";
|
||||
--this.pointer;
|
||||
} else {
|
||||
this.parseError = true;
|
||||
return failure;
|
||||
}
|
||||
|
||||
return true;
|
||||
};
|
||||
|
||||
URLStateMachine.prototype["parse scheme"] = function parseScheme(c, cStr) {
|
||||
if (isASCIIAlphanumeric(c) || c === 43 || c === 45 || c === 46) {
|
||||
this.buffer += cStr.toLowerCase();
|
||||
} else if (c === 58) {
|
||||
if (this.stateOverride) {
|
||||
if (isSpecial(this.url) && !isSpecialScheme(this.buffer)) {
|
||||
return false;
|
||||
}
|
||||
|
||||
if (!isSpecial(this.url) && isSpecialScheme(this.buffer)) {
|
||||
return false;
|
||||
}
|
||||
|
||||
if ((includesCredentials(this.url) || this.url.port !== null) && this.buffer === "file") {
|
||||
return false;
|
||||
}
|
||||
|
||||
if (this.url.scheme === "file" && (this.url.host === "" || this.url.host === null)) {
|
||||
return false;
|
||||
}
|
||||
}
|
||||
this.url.scheme = this.buffer;
|
||||
this.buffer = "";
|
||||
if (this.stateOverride) {
|
||||
return false;
|
||||
}
|
||||
if (this.url.scheme === "file") {
|
||||
if (this.input[this.pointer + 1] !== 47 || this.input[this.pointer + 2] !== 47) {
|
||||
this.parseError = true;
|
||||
}
|
||||
this.state = "file";
|
||||
} else if (isSpecial(this.url) && this.base !== null && this.base.scheme === this.url.scheme) {
|
||||
this.state = "special relative or authority";
|
||||
} else if (isSpecial(this.url)) {
|
||||
this.state = "special authority slashes";
|
||||
} else if (this.input[this.pointer + 1] === 47) {
|
||||
this.state = "path or authority";
|
||||
++this.pointer;
|
||||
} else {
|
||||
this.url.cannotBeABaseURL = true;
|
||||
this.url.path.push("");
|
||||
this.state = "cannot-be-a-base-URL path";
|
||||
}
|
||||
} else if (!this.stateOverride) {
|
||||
this.buffer = "";
|
||||
this.state = "no scheme";
|
||||
this.pointer = -1;
|
||||
} else {
|
||||
this.parseError = true;
|
||||
return failure;
|
||||
}
|
||||
|
||||
return true;
|
||||
};
|
||||
|
||||
URLStateMachine.prototype["parse no scheme"] = function parseNoScheme(c) {
|
||||
if (this.base === null || (this.base.cannotBeABaseURL && c !== 35)) {
|
||||
return failure;
|
||||
} else if (this.base.cannotBeABaseURL && c === 35) {
|
||||
this.url.scheme = this.base.scheme;
|
||||
this.url.path = this.base.path.slice();
|
||||
this.url.query = this.base.query;
|
||||
this.url.fragment = "";
|
||||
this.url.cannotBeABaseURL = true;
|
||||
this.state = "fragment";
|
||||
} else if (this.base.scheme === "file") {
|
||||
this.state = "file";
|
||||
--this.pointer;
|
||||
} else {
|
||||
this.state = "relative";
|
||||
--this.pointer;
|
||||
}
|
||||
|
||||
return true;
|
||||
};
|
||||
|
||||
URLStateMachine.prototype["parse special relative or authority"] = function parseSpecialRelativeOrAuthority(c) {
|
||||
if (c === 47 && this.input[this.pointer + 1] === 47) {
|
||||
this.state = "special authority ignore slashes";
|
||||
++this.pointer;
|
||||
} else {
|
||||
this.parseError = true;
|
||||
this.state = "relative";
|
||||
--this.pointer;
|
||||
}
|
||||
|
||||
return true;
|
||||
};
|
||||
|
||||
URLStateMachine.prototype["parse path or authority"] = function parsePathOrAuthority(c) {
|
||||
if (c === 47) {
|
||||
this.state = "authority";
|
||||
} else {
|
||||
this.state = "path";
|
||||
--this.pointer;
|
||||
}
|
||||
|
||||
return true;
|
||||
};
|
||||
|
||||
URLStateMachine.prototype["parse relative"] = function parseRelative(c) {
|
||||
this.url.scheme = this.base.scheme;
|
||||
if (isNaN(c)) {
|
||||
this.url.username = this.base.username;
|
||||
this.url.password = this.base.password;
|
||||
this.url.host = this.base.host;
|
||||
this.url.port = this.base.port;
|
||||
this.url.path = this.base.path.slice();
|
||||
this.url.query = this.base.query;
|
||||
} else if (c === 47) {
|
||||
this.state = "relative slash";
|
||||
} else if (c === 63) {
|
||||
this.url.username = this.base.username;
|
||||
this.url.password = this.base.password;
|
||||
this.url.host = this.base.host;
|
||||
this.url.port = this.base.port;
|
||||
this.url.path = this.base.path.slice();
|
||||
this.url.query = "";
|
||||
this.state = "query";
|
||||
} else if (c === 35) {
|
||||
this.url.username = this.base.username;
|
||||
this.url.password = this.base.password;
|
||||
this.url.host = this.base.host;
|
||||
this.url.port = this.base.port;
|
||||
this.url.path = this.base.path.slice();
|
||||
this.url.query = this.base.query;
|
||||
this.url.fragment = "";
|
||||
this.state = "fragment";
|
||||
} else if (isSpecial(this.url) && c === 92) {
|
||||
this.parseError = true;
|
||||
this.state = "relative slash";
|
||||
} else {
|
||||
this.url.username = this.base.username;
|
||||
this.url.password = this.base.password;
|
||||
this.url.host = this.base.host;
|
||||
this.url.port = this.base.port;
|
||||
this.url.path = this.base.path.slice(0, this.base.path.length - 1);
|
||||
|
||||
this.state = "path";
|
||||
--this.pointer;
|
||||
}
|
||||
|
||||
return true;
|
||||
};
|
||||
|
||||
URLStateMachine.prototype["parse relative slash"] = function parseRelativeSlash(c) {
|
||||
if (isSpecial(this.url) && (c === 47 || c === 92)) {
|
||||
if (c === 92) {
|
||||
this.parseError = true;
|
||||
}
|
||||
this.state = "special authority ignore slashes";
|
||||
} else if (c === 47) {
|
||||
this.state = "authority";
|
||||
} else {
|
||||
this.url.username = this.base.username;
|
||||
this.url.password = this.base.password;
|
||||
this.url.host = this.base.host;
|
||||
this.url.port = this.base.port;
|
||||
this.state = "path";
|
||||
--this.pointer;
|
||||
}
|
||||
|
||||
return true;
|
||||
};
|
||||
|
||||
URLStateMachine.prototype["parse special authority slashes"] = function parseSpecialAuthoritySlashes(c) {
|
||||
if (c === 47 && this.input[this.pointer + 1] === 47) {
|
||||
this.state = "special authority ignore slashes";
|
||||
++this.pointer;
|
||||
} else {
|
||||
this.parseError = true;
|
||||
this.state = "special authority ignore slashes";
|
||||
--this.pointer;
|
||||
}
|
||||
|
||||
return true;
|
||||
};
|
||||
|
||||
URLStateMachine.prototype["parse special authority ignore slashes"] = function parseSpecialAuthorityIgnoreSlashes(c) {
|
||||
if (c !== 47 && c !== 92) {
|
||||
this.state = "authority";
|
||||
--this.pointer;
|
||||
} else {
|
||||
this.parseError = true;
|
||||
}
|
||||
|
||||
return true;
|
||||
};
|
||||
|
||||
URLStateMachine.prototype["parse authority"] = function parseAuthority(c, cStr) {
|
||||
if (c === 64) {
|
||||
this.parseError = true;
|
||||
if (this.atFlag) {
|
||||
this.buffer = "%40" + this.buffer;
|
||||
}
|
||||
this.atFlag = true;
|
||||
|
||||
// careful, this is based on buffer and has its own pointer (this.pointer != pointer) and inner chars
|
||||
const len = countSymbols(this.buffer);
|
||||
for (let pointer = 0; pointer < len; ++pointer) {
|
||||
const codePoint = this.buffer.codePointAt(pointer);
|
||||
|
||||
if (codePoint === 58 && !this.passwordTokenSeenFlag) {
|
||||
this.passwordTokenSeenFlag = true;
|
||||
continue;
|
||||
}
|
||||
const encodedCodePoints = percentEncodeChar(codePoint, isUserinfoPercentEncode);
|
||||
if (this.passwordTokenSeenFlag) {
|
||||
this.url.password += encodedCodePoints;
|
||||
} else {
|
||||
this.url.username += encodedCodePoints;
|
||||
}
|
||||
}
|
||||
this.buffer = "";
|
||||
} else if (isNaN(c) || c === 47 || c === 63 || c === 35 ||
|
||||
(isSpecial(this.url) && c === 92)) {
|
||||
if (this.atFlag && this.buffer === "") {
|
||||
this.parseError = true;
|
||||
return failure;
|
||||
}
|
||||
this.pointer -= countSymbols(this.buffer) + 1;
|
||||
this.buffer = "";
|
||||
this.state = "host";
|
||||
} else {
|
||||
this.buffer += cStr;
|
||||
}
|
||||
|
||||
return true;
|
||||
};
|
||||
|
||||
URLStateMachine.prototype["parse hostname"] =
|
||||
URLStateMachine.prototype["parse host"] = function parseHostName(c, cStr) {
|
||||
if (this.stateOverride && this.url.scheme === "file") {
|
||||
--this.pointer;
|
||||
this.state = "file host";
|
||||
} else if (c === 58 && !this.arrFlag) {
|
||||
if (this.buffer === "") {
|
||||
this.parseError = true;
|
||||
return failure;
|
||||
}
|
||||
|
||||
const host = parseHost(this.buffer, isSpecial(this.url));
|
||||
if (host === failure) {
|
||||
return failure;
|
||||
}
|
||||
|
||||
this.url.host = host;
|
||||
this.buffer = "";
|
||||
this.state = "port";
|
||||
if (this.stateOverride === "hostname") {
|
||||
return false;
|
||||
}
|
||||
} else if (isNaN(c) || c === 47 || c === 63 || c === 35 ||
|
||||
(isSpecial(this.url) && c === 92)) {
|
||||
--this.pointer;
|
||||
if (isSpecial(this.url) && this.buffer === "") {
|
||||
this.parseError = true;
|
||||
return failure;
|
||||
} else if (this.stateOverride && this.buffer === "" &&
|
||||
(includesCredentials(this.url) || this.url.port !== null)) {
|
||||
this.parseError = true;
|
||||
return false;
|
||||
}
|
||||
|
||||
const host = parseHost(this.buffer, isSpecial(this.url));
|
||||
if (host === failure) {
|
||||
return failure;
|
||||
}
|
||||
|
||||
this.url.host = host;
|
||||
this.buffer = "";
|
||||
this.state = "path start";
|
||||
if (this.stateOverride) {
|
||||
return false;
|
||||
}
|
||||
} else {
|
||||
if (c === 91) {
|
||||
this.arrFlag = true;
|
||||
} else if (c === 93) {
|
||||
this.arrFlag = false;
|
||||
}
|
||||
this.buffer += cStr;
|
||||
}
|
||||
|
||||
return true;
|
||||
};
|
||||
|
||||
URLStateMachine.prototype["parse port"] = function parsePort(c, cStr) {
|
||||
if (isASCIIDigit(c)) {
|
||||
this.buffer += cStr;
|
||||
} else if (isNaN(c) || c === 47 || c === 63 || c === 35 ||
|
||||
(isSpecial(this.url) && c === 92) ||
|
||||
this.stateOverride) {
|
||||
if (this.buffer !== "") {
|
||||
const port = parseInt(this.buffer);
|
||||
if (port > Math.pow(2, 16) - 1) {
|
||||
this.parseError = true;
|
||||
return failure;
|
||||
}
|
||||
this.url.port = port === defaultPort(this.url.scheme) ? null : port;
|
||||
this.buffer = "";
|
||||
}
|
||||
if (this.stateOverride) {
|
||||
return false;
|
||||
}
|
||||
this.state = "path start";
|
||||
--this.pointer;
|
||||
} else {
|
||||
this.parseError = true;
|
||||
return failure;
|
||||
}
|
||||
|
||||
return true;
|
||||
};
|
||||
|
||||
const fileOtherwiseCodePoints = new Set([47, 92, 63, 35]);
|
||||
|
||||
URLStateMachine.prototype["parse file"] = function parseFile(c) {
|
||||
this.url.scheme = "file";
|
||||
|
||||
if (c === 47 || c === 92) {
|
||||
if (c === 92) {
|
||||
this.parseError = true;
|
||||
}
|
||||
this.state = "file slash";
|
||||
} else if (this.base !== null && this.base.scheme === "file") {
|
||||
if (isNaN(c)) {
|
||||
this.url.host = this.base.host;
|
||||
this.url.path = this.base.path.slice();
|
||||
this.url.query = this.base.query;
|
||||
} else if (c === 63) {
|
||||
this.url.host = this.base.host;
|
||||
this.url.path = this.base.path.slice();
|
||||
this.url.query = "";
|
||||
this.state = "query";
|
||||
} else if (c === 35) {
|
||||
this.url.host = this.base.host;
|
||||
this.url.path = this.base.path.slice();
|
||||
this.url.query = this.base.query;
|
||||
this.url.fragment = "";
|
||||
this.state = "fragment";
|
||||
} else {
|
||||
if (this.input.length - this.pointer - 1 === 0 || // remaining consists of 0 code points
|
||||
!isWindowsDriveLetterCodePoints(c, this.input[this.pointer + 1]) ||
|
||||
(this.input.length - this.pointer - 1 >= 2 && // remaining has at least 2 code points
|
||||
!fileOtherwiseCodePoints.has(this.input[this.pointer + 2]))) {
|
||||
this.url.host = this.base.host;
|
||||
this.url.path = this.base.path.slice();
|
||||
shortenPath(this.url);
|
||||
} else {
|
||||
this.parseError = true;
|
||||
}
|
||||
|
||||
this.state = "path";
|
||||
--this.pointer;
|
||||
}
|
||||
} else {
|
||||
this.state = "path";
|
||||
--this.pointer;
|
||||
}
|
||||
|
||||
return true;
|
||||
};
|
||||
|
||||
URLStateMachine.prototype["parse file slash"] = function parseFileSlash(c) {
|
||||
if (c === 47 || c === 92) {
|
||||
if (c === 92) {
|
||||
this.parseError = true;
|
||||
}
|
||||
this.state = "file host";
|
||||
} else {
|
||||
if (this.base !== null && this.base.scheme === "file") {
|
||||
if (isNormalizedWindowsDriveLetterString(this.base.path[0])) {
|
||||
this.url.path.push(this.base.path[0]);
|
||||
} else {
|
||||
this.url.host = this.base.host;
|
||||
}
|
||||
}
|
||||
this.state = "path";
|
||||
--this.pointer;
|
||||
}
|
||||
|
||||
return true;
|
||||
};
|
||||
|
||||
URLStateMachine.prototype["parse file host"] = function parseFileHost(c, cStr) {
|
||||
if (isNaN(c) || c === 47 || c === 92 || c === 63 || c === 35) {
|
||||
--this.pointer;
|
||||
if (!this.stateOverride && isWindowsDriveLetterString(this.buffer)) {
|
||||
this.parseError = true;
|
||||
this.state = "path";
|
||||
} else if (this.buffer === "") {
|
||||
this.url.host = "";
|
||||
if (this.stateOverride) {
|
||||
return false;
|
||||
}
|
||||
this.state = "path start";
|
||||
} else {
|
||||
let host = parseHost(this.buffer, isSpecial(this.url));
|
||||
if (host === failure) {
|
||||
return failure;
|
||||
}
|
||||
if (host === "localhost") {
|
||||
host = "";
|
||||
}
|
||||
this.url.host = host;
|
||||
|
||||
if (this.stateOverride) {
|
||||
return false;
|
||||
}
|
||||
|
||||
this.buffer = "";
|
||||
this.state = "path start";
|
||||
}
|
||||
} else {
|
||||
this.buffer += cStr;
|
||||
}
|
||||
|
||||
return true;
|
||||
};
|
||||
|
||||
URLStateMachine.prototype["parse path start"] = function parsePathStart(c) {
|
||||
if (isSpecial(this.url)) {
|
||||
if (c === 92) {
|
||||
this.parseError = true;
|
||||
}
|
||||
this.state = "path";
|
||||
|
||||
if (c !== 47 && c !== 92) {
|
||||
--this.pointer;
|
||||
}
|
||||
} else if (!this.stateOverride && c === 63) {
|
||||
this.url.query = "";
|
||||
this.state = "query";
|
||||
} else if (!this.stateOverride && c === 35) {
|
||||
this.url.fragment = "";
|
||||
this.state = "fragment";
|
||||
} else if (c !== undefined) {
|
||||
this.state = "path";
|
||||
if (c !== 47) {
|
||||
--this.pointer;
|
||||
}
|
||||
}
|
||||
|
||||
return true;
|
||||
};
|
||||
|
||||
URLStateMachine.prototype["parse path"] = function parsePath(c) {
|
||||
if (isNaN(c) || c === 47 || (isSpecial(this.url) && c === 92) ||
|
||||
(!this.stateOverride && (c === 63 || c === 35))) {
|
||||
if (isSpecial(this.url) && c === 92) {
|
||||
this.parseError = true;
|
||||
}
|
||||
|
||||
if (isDoubleDot(this.buffer)) {
|
||||
shortenPath(this.url);
|
||||
if (c !== 47 && !(isSpecial(this.url) && c === 92)) {
|
||||
this.url.path.push("");
|
||||
}
|
||||
} else if (isSingleDot(this.buffer) && c !== 47 &&
|
||||
!(isSpecial(this.url) && c === 92)) {
|
||||
this.url.path.push("");
|
||||
} else if (!isSingleDot(this.buffer)) {
|
||||
if (this.url.scheme === "file" && this.url.path.length === 0 && isWindowsDriveLetterString(this.buffer)) {
|
||||
if (this.url.host !== "" && this.url.host !== null) {
|
||||
this.parseError = true;
|
||||
this.url.host = "";
|
||||
}
|
||||
this.buffer = this.buffer[0] + ":";
|
||||
}
|
||||
this.url.path.push(this.buffer);
|
||||
}
|
||||
this.buffer = "";
|
||||
if (this.url.scheme === "file" && (c === undefined || c === 63 || c === 35)) {
|
||||
while (this.url.path.length > 1 && this.url.path[0] === "") {
|
||||
this.parseError = true;
|
||||
this.url.path.shift();
|
||||
}
|
||||
}
|
||||
if (c === 63) {
|
||||
this.url.query = "";
|
||||
this.state = "query";
|
||||
}
|
||||
if (c === 35) {
|
||||
this.url.fragment = "";
|
||||
this.state = "fragment";
|
||||
}
|
||||
} else {
|
||||
// TODO: If c is not a URL code point and not "%", parse error.
|
||||
|
||||
if (c === 37 &&
|
||||
(!isASCIIHex(this.input[this.pointer + 1]) ||
|
||||
!isASCIIHex(this.input[this.pointer + 2]))) {
|
||||
this.parseError = true;
|
||||
}
|
||||
|
||||
this.buffer += percentEncodeChar(c, isPathPercentEncode);
|
||||
}
|
||||
|
||||
return true;
|
||||
};
|
||||
|
||||
URLStateMachine.prototype["parse cannot-be-a-base-URL path"] = function parseCannotBeABaseURLPath(c) {
|
||||
if (c === 63) {
|
||||
this.url.query = "";
|
||||
this.state = "query";
|
||||
} else if (c === 35) {
|
||||
this.url.fragment = "";
|
||||
this.state = "fragment";
|
||||
} else {
|
||||
// TODO: Add: not a URL code point
|
||||
if (!isNaN(c) && c !== 37) {
|
||||
this.parseError = true;
|
||||
}
|
||||
|
||||
if (c === 37 &&
|
||||
(!isASCIIHex(this.input[this.pointer + 1]) ||
|
||||
!isASCIIHex(this.input[this.pointer + 2]))) {
|
||||
this.parseError = true;
|
||||
}
|
||||
|
||||
if (!isNaN(c)) {
|
||||
this.url.path[0] = this.url.path[0] + percentEncodeChar(c, isC0ControlPercentEncode);
|
||||
}
|
||||
}
|
||||
|
||||
return true;
|
||||
};
|
||||
|
||||
URLStateMachine.prototype["parse query"] = function parseQuery(c, cStr) {
|
||||
if (isNaN(c) || (!this.stateOverride && c === 35)) {
|
||||
if (!isSpecial(this.url) || this.url.scheme === "ws" || this.url.scheme === "wss") {
|
||||
this.encodingOverride = "utf-8";
|
||||
}
|
||||
|
||||
const buffer = new Buffer(this.buffer); // TODO: Use encoding override instead
|
||||
for (let i = 0; i < buffer.length; ++i) {
|
||||
if (buffer[i] < 0x21 || buffer[i] > 0x7E || buffer[i] === 0x22 || buffer[i] === 0x23 ||
|
||||
buffer[i] === 0x3C || buffer[i] === 0x3E) {
|
||||
this.url.query += percentEncode(buffer[i]);
|
||||
} else {
|
||||
this.url.query += String.fromCodePoint(buffer[i]);
|
||||
}
|
||||
}
|
||||
|
||||
this.buffer = "";
|
||||
if (c === 35) {
|
||||
this.url.fragment = "";
|
||||
this.state = "fragment";
|
||||
}
|
||||
} else {
|
||||
// TODO: If c is not a URL code point and not "%", parse error.
|
||||
if (c === 37 &&
|
||||
(!isASCIIHex(this.input[this.pointer + 1]) ||
|
||||
!isASCIIHex(this.input[this.pointer + 2]))) {
|
||||
this.parseError = true;
|
||||
}
|
||||
|
||||
this.buffer += cStr;
|
||||
}
|
||||
|
||||
return true;
|
||||
};
|
||||
|
||||
URLStateMachine.prototype["parse fragment"] = function parseFragment(c) {
|
||||
if (isNaN(c)) { // do nothing
|
||||
} else if (c === 0x0) {
|
||||
this.parseError = true;
|
||||
} else {
|
||||
// TODO: If c is not a URL code point and not "%", parse error.
|
||||
if (c === 37 &&
|
||||
(!isASCIIHex(this.input[this.pointer + 1]) ||
|
||||
!isASCIIHex(this.input[this.pointer + 2]))) {
|
||||
this.parseError = true;
|
||||
}
|
||||
|
||||
this.url.fragment += percentEncodeChar(c, isC0ControlPercentEncode);
|
||||
}
|
||||
|
||||
return true;
|
||||
};
|
||||
|
||||
function serializeURL(url, excludeFragment) {
|
||||
let output = url.scheme + ":";
|
||||
if (url.host !== null) {
|
||||
output += "//";
|
||||
|
||||
if (url.username !== "" || url.password !== "") {
|
||||
output += url.username;
|
||||
if (url.password !== "") {
|
||||
output += ":" + url.password;
|
||||
}
|
||||
output += "@";
|
||||
}
|
||||
|
||||
output += serializeHost(url.host);
|
||||
|
||||
if (url.port !== null) {
|
||||
output += ":" + url.port;
|
||||
}
|
||||
} else if (url.host === null && url.scheme === "file") {
|
||||
output += "//";
|
||||
}
|
||||
|
||||
if (url.cannotBeABaseURL) {
|
||||
output += url.path[0];
|
||||
} else {
|
||||
for (const string of url.path) {
|
||||
output += "/" + string;
|
||||
}
|
||||
}
|
||||
|
||||
if (url.query !== null) {
|
||||
output += "?" + url.query;
|
||||
}
|
||||
|
||||
if (!excludeFragment && url.fragment !== null) {
|
||||
output += "#" + url.fragment;
|
||||
}
|
||||
|
||||
return output;
|
||||
}
|
||||
|
||||
function serializeOrigin(tuple) {
|
||||
let result = tuple.scheme + "://";
|
||||
result += serializeHost(tuple.host);
|
||||
|
||||
if (tuple.port !== null) {
|
||||
result += ":" + tuple.port;
|
||||
}
|
||||
|
||||
return result;
|
||||
}
|
||||
|
||||
module.exports.serializeURL = serializeURL;
|
||||
|
||||
module.exports.serializeURLOrigin = function (url) {
|
||||
// https://url.spec.whatwg.org/#concept-url-origin
|
||||
switch (url.scheme) {
|
||||
case "blob":
|
||||
try {
|
||||
return module.exports.serializeURLOrigin(module.exports.parseURL(url.path[0]));
|
||||
} catch (e) {
|
||||
// serializing an opaque origin returns "null"
|
||||
return "null";
|
||||
}
|
||||
case "ftp":
|
||||
case "gopher":
|
||||
case "http":
|
||||
case "https":
|
||||
case "ws":
|
||||
case "wss":
|
||||
return serializeOrigin({
|
||||
scheme: url.scheme,
|
||||
host: url.host,
|
||||
port: url.port
|
||||
});
|
||||
case "file":
|
||||
// spec says "exercise to the reader", chrome says "file://"
|
||||
return "file://";
|
||||
default:
|
||||
// serializing an opaque origin returns "null"
|
||||
return "null";
|
||||
}
|
||||
};
|
||||
|
||||
module.exports.basicURLParse = function (input, options) {
|
||||
if (options === undefined) {
|
||||
options = {};
|
||||
}
|
||||
|
||||
const usm = new URLStateMachine(input, options.baseURL, options.encodingOverride, options.url, options.stateOverride);
|
||||
if (usm.failure) {
|
||||
return "failure";
|
||||
}
|
||||
|
||||
return usm.url;
|
||||
};
|
||||
|
||||
module.exports.setTheUsername = function (url, username) {
|
||||
url.username = "";
|
||||
const decoded = punycode.ucs2.decode(username);
|
||||
for (let i = 0; i < decoded.length; ++i) {
|
||||
url.username += percentEncodeChar(decoded[i], isUserinfoPercentEncode);
|
||||
}
|
||||
};
|
||||
|
||||
module.exports.setThePassword = function (url, password) {
|
||||
url.password = "";
|
||||
const decoded = punycode.ucs2.decode(password);
|
||||
for (let i = 0; i < decoded.length; ++i) {
|
||||
url.password += percentEncodeChar(decoded[i], isUserinfoPercentEncode);
|
||||
}
|
||||
};
|
||||
|
||||
module.exports.serializeHost = serializeHost;
|
||||
|
||||
module.exports.cannotHaveAUsernamePasswordPort = cannotHaveAUsernamePasswordPort;
|
||||
|
||||
module.exports.serializeInteger = function (integer) {
|
||||
return String(integer);
|
||||
};
|
||||
|
||||
module.exports.parseURL = function (input, options) {
|
||||
if (options === undefined) {
|
||||
options = {};
|
||||
}
|
||||
|
||||
// We don't handle blobs, so this just delegates:
|
||||
return module.exports.basicURLParse(input, { baseURL: options.baseURL, encodingOverride: options.encodingOverride });
|
||||
};
|
||||
|
||||
|
||||
/***/ }),
|
||||
@ -63130,12 +63130,12 @@ const getPackageManagerInfo = (packageManager) => __awaiter(void 0, void 0, void
|
||||
});
|
||||
exports.getPackageManagerInfo = getPackageManagerInfo;
|
||||
const getCacheDirectoryPath = (packageManagerInfo) => __awaiter(void 0, void 0, void 0, function* () {
|
||||
let pathList = yield Promise.all(packageManagerInfo.cacheFolderCommandList.map(command => exports.getCommandOutput(command)));
|
||||
const emptyPaths = pathList.filter(item => !item);
|
||||
if (emptyPaths.length) {
|
||||
const pathList = yield Promise.all(packageManagerInfo.cacheFolderCommandList.map(command => exports.getCommandOutput(command)));
|
||||
const cachePaths = pathList.filter(item => item);
|
||||
if (!cachePaths.length) {
|
||||
throw new Error(`Could not get cache folder paths.`);
|
||||
}
|
||||
return pathList;
|
||||
return cachePaths;
|
||||
});
|
||||
exports.getCacheDirectoryPath = getCacheDirectoryPath;
|
||||
function isGhes() {
|
||||
@ -63144,16 +63144,15 @@ function isGhes() {
|
||||
}
|
||||
exports.isGhes = isGhes;
|
||||
function isCacheFeatureAvailable() {
|
||||
if (!cache.isFeatureAvailable()) {
|
||||
if (isGhes()) {
|
||||
throw new Error('Cache action is only supported on GHES version >= 3.5. If you are on version >=3.5 Please check with GHES admin if Actions cache service is enabled or not.');
|
||||
}
|
||||
else {
|
||||
core.warning('The runner was not able to contact the cache service. Caching will be skipped');
|
||||
}
|
||||
if (cache.isFeatureAvailable()) {
|
||||
return true;
|
||||
}
|
||||
if (isGhes()) {
|
||||
core.warning('Cache action is only supported on GHES version >= 3.5. If you are on version >=3.5 Please check with GHES admin if Actions cache service is enabled or not.');
|
||||
return false;
|
||||
}
|
||||
return true;
|
||||
core.warning('The runner was not able to contact the cache service. Caching will be skipped');
|
||||
return false;
|
||||
}
|
||||
exports.isCacheFeatureAvailable = isCacheFeatureAvailable;
|
||||
|
||||
|
||||
@ -34,19 +34,19 @@ export const getPackageManagerInfo = async (packageManager: string) => {
|
||||
export const getCacheDirectoryPath = async (
|
||||
packageManagerInfo: PackageManagerInfo
|
||||
) => {
|
||||
let pathList = await Promise.all(
|
||||
const pathList = await Promise.all(
|
||||
packageManagerInfo.cacheFolderCommandList.map(command =>
|
||||
getCommandOutput(command)
|
||||
)
|
||||
);
|
||||
|
||||
const emptyPaths = pathList.filter(item => !item);
|
||||
const cachePaths = pathList.filter(item => item);
|
||||
|
||||
if (emptyPaths.length) {
|
||||
if (!cachePaths.length) {
|
||||
throw new Error(`Could not get cache folder paths.`);
|
||||
}
|
||||
|
||||
return pathList;
|
||||
return cachePaths;
|
||||
};
|
||||
|
||||
export function isGhes(): boolean {
|
||||
@ -57,19 +57,19 @@ export function isGhes(): boolean {
|
||||
}
|
||||
|
||||
export function isCacheFeatureAvailable(): boolean {
|
||||
if (!cache.isFeatureAvailable()) {
|
||||
if (isGhes()) {
|
||||
throw new Error(
|
||||
'Cache action is only supported on GHES version >= 3.5. If you are on version >=3.5 Please check with GHES admin if Actions cache service is enabled or not.'
|
||||
);
|
||||
} else {
|
||||
core.warning(
|
||||
'The runner was not able to contact the cache service. Caching will be skipped'
|
||||
);
|
||||
}
|
||||
if (cache.isFeatureAvailable()) {
|
||||
return true;
|
||||
}
|
||||
|
||||
if (isGhes()) {
|
||||
core.warning(
|
||||
'Cache action is only supported on GHES version >= 3.5. If you are on version >=3.5 Please check with GHES admin if Actions cache service is enabled or not.'
|
||||
);
|
||||
return false;
|
||||
}
|
||||
|
||||
return true;
|
||||
core.warning(
|
||||
'The runner was not able to contact the cache service. Caching will be skipped'
|
||||
);
|
||||
return false;
|
||||
}
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user