@caravan/psbt 1.9.1 → 1.9.2
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.js +11 -0
- package/dist/index.mjs +11 -0
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -1,3 +1,14 @@
|
|
|
1
|
+
|
|
2
|
+
if (typeof self === 'undefined') {
|
|
3
|
+
var self;
|
|
4
|
+
if (typeof window !== 'undefined') {
|
|
5
|
+
self = window;
|
|
6
|
+
} else if (typeof globalThis !== 'undefined') {
|
|
7
|
+
self = globalThis;
|
|
8
|
+
} else {
|
|
9
|
+
self = {}
|
|
10
|
+
}
|
|
11
|
+
}
|
|
1
12
|
"use strict";
|
|
2
13
|
var __create = Object.create;
|
|
3
14
|
var __defProp = Object.defineProperty;
|
package/dist/index.mjs
CHANGED
|
@@ -1,3 +1,14 @@
|
|
|
1
|
+
|
|
2
|
+
if (typeof self === 'undefined') {
|
|
3
|
+
var self;
|
|
4
|
+
if (typeof window !== 'undefined') {
|
|
5
|
+
self = window;
|
|
6
|
+
} else if (typeof globalThis !== 'undefined') {
|
|
7
|
+
self = globalThis;
|
|
8
|
+
} else {
|
|
9
|
+
self = {}
|
|
10
|
+
}
|
|
11
|
+
}
|
|
1
12
|
var __defProp = Object.defineProperty;
|
|
2
13
|
var __export = (target, all) => {
|
|
3
14
|
for (var name in all)
|