@orion-js/logger 4.0.0-alpha.4 → 4.0.0-next.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/dist/index.cjs +17 -21
- package/dist/index.js +17 -21
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -2773,37 +2773,33 @@ var require_state = __commonJS((exports2, module2) => {
|
|
|
2773
2773
|
};
|
|
2774
2774
|
});
|
|
2775
2775
|
|
|
2776
|
-
// ../../node_modules/inherits/inherits_browser.js
|
|
2776
|
+
// ../../node_modules/readable-stream/node_modules/inherits/inherits_browser.js
|
|
2777
2777
|
var require_inherits_browser = __commonJS((exports2, module2) => {
|
|
2778
2778
|
if (typeof Object.create === "function") {
|
|
2779
2779
|
module2.exports = function inherits(ctor, superCtor) {
|
|
2780
|
-
|
|
2781
|
-
|
|
2782
|
-
|
|
2783
|
-
|
|
2784
|
-
|
|
2785
|
-
|
|
2786
|
-
|
|
2787
|
-
|
|
2788
|
-
|
|
2789
|
-
});
|
|
2790
|
-
}
|
|
2780
|
+
ctor.super_ = superCtor;
|
|
2781
|
+
ctor.prototype = Object.create(superCtor.prototype, {
|
|
2782
|
+
constructor: {
|
|
2783
|
+
value: ctor,
|
|
2784
|
+
enumerable: false,
|
|
2785
|
+
writable: true,
|
|
2786
|
+
configurable: true
|
|
2787
|
+
}
|
|
2788
|
+
});
|
|
2791
2789
|
};
|
|
2792
2790
|
} else {
|
|
2793
2791
|
module2.exports = function inherits(ctor, superCtor) {
|
|
2794
|
-
|
|
2795
|
-
|
|
2796
|
-
|
|
2797
|
-
|
|
2798
|
-
|
|
2799
|
-
|
|
2800
|
-
ctor.prototype.constructor = ctor;
|
|
2801
|
-
}
|
|
2792
|
+
ctor.super_ = superCtor;
|
|
2793
|
+
var TempCtor = function() {
|
|
2794
|
+
};
|
|
2795
|
+
TempCtor.prototype = superCtor.prototype;
|
|
2796
|
+
ctor.prototype = new TempCtor;
|
|
2797
|
+
ctor.prototype.constructor = ctor;
|
|
2802
2798
|
};
|
|
2803
2799
|
}
|
|
2804
2800
|
});
|
|
2805
2801
|
|
|
2806
|
-
// ../../node_modules/inherits/inherits.js
|
|
2802
|
+
// ../../node_modules/readable-stream/node_modules/inherits/inherits.js
|
|
2807
2803
|
var require_inherits = __commonJS((exports2, module2) => {
|
|
2808
2804
|
try {
|
|
2809
2805
|
util = require("util");
|
package/dist/index.js
CHANGED
|
@@ -2746,37 +2746,33 @@ var require_state = __commonJS((exports, module) => {
|
|
|
2746
2746
|
};
|
|
2747
2747
|
});
|
|
2748
2748
|
|
|
2749
|
-
// ../../node_modules/inherits/inherits_browser.js
|
|
2749
|
+
// ../../node_modules/readable-stream/node_modules/inherits/inherits_browser.js
|
|
2750
2750
|
var require_inherits_browser = __commonJS((exports, module) => {
|
|
2751
2751
|
if (typeof Object.create === "function") {
|
|
2752
2752
|
module.exports = function inherits(ctor, superCtor) {
|
|
2753
|
-
|
|
2754
|
-
|
|
2755
|
-
|
|
2756
|
-
|
|
2757
|
-
|
|
2758
|
-
|
|
2759
|
-
|
|
2760
|
-
|
|
2761
|
-
|
|
2762
|
-
});
|
|
2763
|
-
}
|
|
2753
|
+
ctor.super_ = superCtor;
|
|
2754
|
+
ctor.prototype = Object.create(superCtor.prototype, {
|
|
2755
|
+
constructor: {
|
|
2756
|
+
value: ctor,
|
|
2757
|
+
enumerable: false,
|
|
2758
|
+
writable: true,
|
|
2759
|
+
configurable: true
|
|
2760
|
+
}
|
|
2761
|
+
});
|
|
2764
2762
|
};
|
|
2765
2763
|
} else {
|
|
2766
2764
|
module.exports = function inherits(ctor, superCtor) {
|
|
2767
|
-
|
|
2768
|
-
|
|
2769
|
-
|
|
2770
|
-
|
|
2771
|
-
|
|
2772
|
-
|
|
2773
|
-
ctor.prototype.constructor = ctor;
|
|
2774
|
-
}
|
|
2765
|
+
ctor.super_ = superCtor;
|
|
2766
|
+
var TempCtor = function() {
|
|
2767
|
+
};
|
|
2768
|
+
TempCtor.prototype = superCtor.prototype;
|
|
2769
|
+
ctor.prototype = new TempCtor;
|
|
2770
|
+
ctor.prototype.constructor = ctor;
|
|
2775
2771
|
};
|
|
2776
2772
|
}
|
|
2777
2773
|
});
|
|
2778
2774
|
|
|
2779
|
-
// ../../node_modules/inherits/inherits.js
|
|
2775
|
+
// ../../node_modules/readable-stream/node_modules/inherits/inherits.js
|
|
2780
2776
|
var require_inherits = __commonJS((exports, module) => {
|
|
2781
2777
|
try {
|
|
2782
2778
|
util = __require("util");
|