Rebuild dist
This commit is contained in:
+6
-2
@@ -35,11 +35,15 @@ function getDefaultExportFromCjs (x) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
function getAugmentedNamespace(n) {
|
function getAugmentedNamespace(n) {
|
||||||
if (n.__esModule) return n;
|
if (Object.prototype.hasOwnProperty.call(n, '__esModule')) return n;
|
||||||
var f = n.default;
|
var f = n.default;
|
||||||
if (typeof f == "function") {
|
if (typeof f == "function") {
|
||||||
var a = function a () {
|
var a = function a () {
|
||||||
if (this instanceof a) {
|
var isInstance = false;
|
||||||
|
try {
|
||||||
|
isInstance = this instanceof a;
|
||||||
|
} catch {}
|
||||||
|
if (isInstance) {
|
||||||
return Reflect.construct(f, arguments, this.constructor);
|
return Reflect.construct(f, arguments, this.constructor);
|
||||||
}
|
}
|
||||||
return f.apply(this, arguments);
|
return f.apply(this, arguments);
|
||||||
|
|||||||
+1
-1
File diff suppressed because one or more lines are too long
@@ -6,6 +6,7 @@
|
|||||||
"declarationMap": false,
|
"declarationMap": false,
|
||||||
"esModuleInterop": true,
|
"esModuleInterop": true,
|
||||||
"forceConsistentCasingInFileNames": true,
|
"forceConsistentCasingInFileNames": true,
|
||||||
|
"isolatedModules": true,
|
||||||
"lib": ["ES2022"],
|
"lib": ["ES2022"],
|
||||||
"module": "NodeNext",
|
"module": "NodeNext",
|
||||||
"moduleResolution": "NodeNext",
|
"moduleResolution": "NodeNext",
|
||||||
|
|||||||
Reference in New Issue
Block a user