Rebuild dist

This commit is contained in:
Nick Alteen
2025-06-27 11:09:48 -04:00
parent c90263bd04
commit cc2528fd11

6
dist/index.js generated vendored
View File

@@ -39,7 +39,11 @@ function getAugmentedNamespace(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);