@magic-xpa/mscorelib 4.800.0 → 4.800.1-dev000.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/bundles/magic-xpa-mscorelib.umd.js +29 -6
- package/bundles/magic-xpa-mscorelib.umd.js.map +1 -1
- package/bundles/magic-xpa-mscorelib.umd.min.js +1 -15
- package/bundles/magic-xpa-mscorelib.umd.min.js.map +1 -1
- package/fesm2015/magic-xpa-mscorelib.js +3 -3
- package/fesm2015/magic-xpa-mscorelib.js.map +1 -1
- package/package.json +1 -1
|
@@ -1,8 +1,29 @@
|
|
|
1
1
|
(function (global, factory) {
|
|
2
2
|
typeof exports === 'object' && typeof module !== 'undefined' ? factory(exports, require('util'), require('moment'), require('text-encoding'), require('stacktrace-js'), require('rxjs')) :
|
|
3
3
|
typeof define === 'function' && define.amd ? define('@magic-xpa/mscorelib', ['exports', 'util', 'moment', 'text-encoding', 'stacktrace-js', 'rxjs'], factory) :
|
|
4
|
-
(global = global || self, factory((global[
|
|
5
|
-
}(this, (function (exports, util, momentNs, textEncoding, StackTrace$1, rxjs) { 'use strict';
|
|
4
|
+
(global = typeof globalThis !== 'undefined' ? globalThis : global || self, factory((global["magic-xpa"] = global["magic-xpa"] || {}, global["magic-xpa"].mscorelib = {}), global.util, global.momentNs, global.textEncoding, global.StackTrace$1, global.rxjs));
|
|
5
|
+
})(this, (function (exports, util, momentNs, textEncoding, StackTrace$1, rxjs) { 'use strict';
|
|
6
|
+
|
|
7
|
+
function _interopNamespace(e) {
|
|
8
|
+
if (e && e.__esModule) return e;
|
|
9
|
+
var n = Object.create(null);
|
|
10
|
+
if (e) {
|
|
11
|
+
Object.keys(e).forEach(function (k) {
|
|
12
|
+
if (k !== 'default') {
|
|
13
|
+
var d = Object.getOwnPropertyDescriptor(e, k);
|
|
14
|
+
Object.defineProperty(n, k, d.get ? d : {
|
|
15
|
+
enumerable: true,
|
|
16
|
+
get: function () { return e[k]; }
|
|
17
|
+
});
|
|
18
|
+
}
|
|
19
|
+
});
|
|
20
|
+
}
|
|
21
|
+
n["default"] = e;
|
|
22
|
+
return Object.freeze(n);
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
var momentNs__namespace = /*#__PURE__*/_interopNamespace(momentNs);
|
|
26
|
+
var StackTrace__namespace = /*#__PURE__*/_interopNamespace(StackTrace$1);
|
|
6
27
|
|
|
7
28
|
/*! *****************************************************************************
|
|
8
29
|
Copyright (c) Microsoft Corporation.
|
|
@@ -412,7 +433,8 @@
|
|
|
412
433
|
}());
|
|
413
434
|
CultureInfo.InvariantCulture = new CultureInfo();
|
|
414
435
|
|
|
415
|
-
var moment =
|
|
436
|
+
var moment = momentNs__namespace;
|
|
437
|
+
exports.DateTimeKind = void 0;
|
|
416
438
|
(function (DateTimeKind) {
|
|
417
439
|
DateTimeKind[DateTimeKind["Local"] = 0] = "Local";
|
|
418
440
|
DateTimeKind[DateTimeKind["Utc"] = 1] = "Utc";
|
|
@@ -1128,6 +1150,7 @@
|
|
|
1128
1150
|
return NotImplementedException;
|
|
1129
1151
|
}(Exception));
|
|
1130
1152
|
|
|
1153
|
+
exports.NumberStyles = void 0;
|
|
1131
1154
|
(function (NumberStyles) {
|
|
1132
1155
|
NumberStyles[NumberStyles["HexNumber"] = 0] = "HexNumber";
|
|
1133
1156
|
})(exports.NumberStyles || (exports.NumberStyles = {}));
|
|
@@ -1363,7 +1386,7 @@
|
|
|
1363
1386
|
var StackFrame = /** @class */ (function () {
|
|
1364
1387
|
function StackFrame(skipFrames, fNeedFileInfo) {
|
|
1365
1388
|
this.stackFrame = null;
|
|
1366
|
-
var stackFrames =
|
|
1389
|
+
var stackFrames = StackTrace__namespace.getSync();
|
|
1367
1390
|
if (skipFrames < 0 || skipFrames >= stackFrames.length)
|
|
1368
1391
|
throw new Error("Argument out of range");
|
|
1369
1392
|
this.stackFrame = stackFrames[skipFrames];
|
|
@@ -1378,7 +1401,7 @@
|
|
|
1378
1401
|
function StackTrace() {
|
|
1379
1402
|
}
|
|
1380
1403
|
StackTrace.prototype.GetFrames = function () {
|
|
1381
|
-
return
|
|
1404
|
+
return StackTrace__namespace.getSync();
|
|
1382
1405
|
};
|
|
1383
1406
|
return StackTrace;
|
|
1384
1407
|
}());
|
|
@@ -1644,5 +1667,5 @@
|
|
|
1644
1667
|
|
|
1645
1668
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
1646
1669
|
|
|
1647
|
-
}))
|
|
1670
|
+
}));
|
|
1648
1671
|
//# sourceMappingURL=magic-xpa-mscorelib.umd.js.map
|