indexeddbshim 10.1.0 → 11.0.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/badges/licenses-badge-dev.svg +1 -1
- package/badges/licenses-badge.svg +1 -1
- package/dist/indexeddbshim-Key.js +35 -32
- package/dist/indexeddbshim-Key.js.map +1 -1
- package/dist/indexeddbshim-Key.min.js +2 -2
- package/dist/indexeddbshim-Key.min.js.map +1 -1
- package/dist/{indexeddbshim-UnicodeIdentifiers-node.js → indexeddbshim-UnicodeIdentifiers-node.cjs} +123 -53
- package/dist/indexeddbshim-UnicodeIdentifiers-node.cjs.map +1 -0
- package/dist/indexeddbshim-UnicodeIdentifiers.js +227 -194
- package/dist/indexeddbshim-UnicodeIdentifiers.js.map +1 -1
- package/dist/indexeddbshim-UnicodeIdentifiers.min.js +2 -8
- package/dist/indexeddbshim-UnicodeIdentifiers.min.js.map +1 -1
- package/dist/{indexeddbshim-node.js → indexeddbshim-node.cjs} +121 -51
- package/dist/indexeddbshim-node.cjs.map +1 -0
- package/dist/indexeddbshim-noninvasive.js +225 -192
- package/dist/indexeddbshim-noninvasive.js.map +1 -1
- package/dist/indexeddbshim-noninvasive.min.js +2 -8
- package/dist/indexeddbshim-noninvasive.min.js.map +1 -1
- package/dist/indexeddbshim.js +225 -192
- package/dist/indexeddbshim.js.map +1 -1
- package/dist/indexeddbshim.min.js +2 -8
- package/dist/indexeddbshim.min.js.map +1 -1
- package/package.json +62 -48
- package/src/IDBTransaction.js +1 -0
- package/src/node-UnicodeIdentifiers.js +2 -3
- package/src/node.js +2 -3
- package/dist/indexeddbshim-UnicodeIdentifiers-node.js.map +0 -1
- package/dist/indexeddbshim-node.js.map +0 -1
package/dist/{indexeddbshim-UnicodeIdentifiers-node.js → indexeddbshim-UnicodeIdentifiers-node.cjs}
RENAMED
|
@@ -1,7 +1,8 @@
|
|
|
1
|
-
/*! indexeddbshim -
|
|
1
|
+
/*! indexeddbshim - v11.0.0 - 4/9/2023 */
|
|
2
2
|
|
|
3
3
|
'use strict';
|
|
4
4
|
|
|
5
|
+
var fs$1 = require('node:fs');
|
|
5
6
|
var path = require('path');
|
|
6
7
|
var customOpenDatabase = require('websql/custom/index.js');
|
|
7
8
|
|
|
@@ -57,7 +58,7 @@ function _asyncToGenerator(fn) {
|
|
|
57
58
|
};
|
|
58
59
|
}
|
|
59
60
|
function _defineProperty$1(obj, key, value) {
|
|
60
|
-
key = _toPropertyKey(key);
|
|
61
|
+
key = _toPropertyKey$1(key);
|
|
61
62
|
if (key in obj) {
|
|
62
63
|
Object.defineProperty(obj, key, {
|
|
63
64
|
value: value,
|
|
@@ -80,7 +81,7 @@ function _toPrimitive(input, hint) {
|
|
|
80
81
|
}
|
|
81
82
|
return (hint === "string" ? String : Number)(input);
|
|
82
83
|
}
|
|
83
|
-
function _toPropertyKey(arg) {
|
|
84
|
+
function _toPropertyKey$1(arg) {
|
|
84
85
|
var key = _toPrimitive(arg, "string");
|
|
85
86
|
return typeof key === "symbol" ? key : String(key);
|
|
86
87
|
}
|
|
@@ -2862,26 +2863,26 @@ function possiblyUpdateKeyGenerator(tx, store, key, successCb, sqlFailCb) {
|
|
|
2862
2863
|
|
|
2863
2864
|
var Key = /*#__PURE__*/Object.freeze({
|
|
2864
2865
|
__proto__: null,
|
|
2865
|
-
|
|
2866
|
-
|
|
2867
|
-
roundTrip: roundTrip,
|
|
2866
|
+
assignCurrentNumber: assignCurrentNumber,
|
|
2867
|
+
checkKeyCouldBeInjectedIntoValue: checkKeyCouldBeInjectedIntoValue,
|
|
2868
2868
|
convertKeyToValue: convertKeyToValue,
|
|
2869
|
-
convertValueToKeyValueDecoded: convertValueToKeyValueDecoded,
|
|
2870
|
-
convertValueToMultiEntryKeyDecoded: convertValueToMultiEntryKeyDecoded,
|
|
2871
2869
|
convertValueToKey: convertValueToKey,
|
|
2872
|
-
convertValueToMultiEntryKey: convertValueToMultiEntryKey,
|
|
2873
2870
|
convertValueToKeyRethrowingAndIfInvalid: convertValueToKeyRethrowingAndIfInvalid,
|
|
2874
|
-
|
|
2871
|
+
convertValueToKeyValueDecoded: convertValueToKeyValueDecoded,
|
|
2872
|
+
convertValueToMultiEntryKey: convertValueToMultiEntryKey,
|
|
2873
|
+
convertValueToMultiEntryKeyDecoded: convertValueToMultiEntryKeyDecoded,
|
|
2874
|
+
decode: decode$1,
|
|
2875
|
+
encode: encode$1,
|
|
2875
2876
|
evaluateKeyPathOnValue: evaluateKeyPathOnValue,
|
|
2877
|
+
extractKeyFromValueUsingKeyPath: extractKeyFromValueUsingKeyPath,
|
|
2876
2878
|
extractKeyValueDecodedFromValueUsingKeyPath: extractKeyValueDecodedFromValueUsingKeyPath,
|
|
2877
|
-
injectKeyIntoValueUsingKeyPath: injectKeyIntoValueUsingKeyPath,
|
|
2878
|
-
checkKeyCouldBeInjectedIntoValue: checkKeyCouldBeInjectedIntoValue,
|
|
2879
|
-
isMultiEntryMatch: isMultiEntryMatch,
|
|
2880
|
-
isKeyInRange: isKeyInRange,
|
|
2881
2879
|
findMultiEntryMatches: findMultiEntryMatches,
|
|
2882
|
-
assignCurrentNumber: assignCurrentNumber,
|
|
2883
2880
|
generateKeyForStore: generateKeyForStore,
|
|
2884
|
-
|
|
2881
|
+
injectKeyIntoValueUsingKeyPath: injectKeyIntoValueUsingKeyPath,
|
|
2882
|
+
isKeyInRange: isKeyInRange,
|
|
2883
|
+
isMultiEntryMatch: isMultiEntryMatch,
|
|
2884
|
+
possiblyUpdateKeyGenerator: possiblyUpdateKeyGenerator,
|
|
2885
|
+
roundTrip: roundTrip
|
|
2885
2886
|
});
|
|
2886
2887
|
|
|
2887
2888
|
const readonlyProperties$4 = ['lower', 'upper', 'lowerOpen', 'upperOpen'];
|
|
@@ -3294,6 +3295,7 @@ IDBTransaction.prototype.__executeRequests = function () {
|
|
|
3294
3295
|
// Do not set __active flag to false yet: https://github.com/w3c/IndexedDB/issues/87
|
|
3295
3296
|
if (e.__legacyOutputDidListenersThrowError) {
|
|
3296
3297
|
logError('Error', 'An error occurred in a success handler attached to request chain', e.__legacyOutputDidListenersThrowError); // We do nothing else with this error as per spec
|
|
3298
|
+
// me.__active = false;
|
|
3297
3299
|
me.__abortTransaction(createDOMException('AbortError', 'A request was aborted (in user handler after success).'));
|
|
3298
3300
|
return;
|
|
3299
3301
|
}
|
|
@@ -3755,11 +3757,11 @@ function _objectSpread2(e) {
|
|
|
3755
3757
|
return e;
|
|
3756
3758
|
}
|
|
3757
3759
|
function _typeof(e) {
|
|
3758
|
-
return
|
|
3760
|
+
return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (e) {
|
|
3759
3761
|
return typeof e;
|
|
3760
3762
|
} : function (e) {
|
|
3761
3763
|
return e && "function" == typeof Symbol && e.constructor === Symbol && e !== Symbol.prototype ? "symbol" : typeof e;
|
|
3762
|
-
}
|
|
3764
|
+
}, _typeof(e);
|
|
3763
3765
|
}
|
|
3764
3766
|
function _classCallCheck(e, t) {
|
|
3765
3767
|
if (!(e instanceof t)) throw new TypeError("Cannot call a class as a function");
|
|
@@ -3767,7 +3769,7 @@ function _classCallCheck(e, t) {
|
|
|
3767
3769
|
function _defineProperties(e, t) {
|
|
3768
3770
|
for (var r = 0; r < t.length; r++) {
|
|
3769
3771
|
var n = t[r];
|
|
3770
|
-
n.enumerable = n.enumerable || !1, n.configurable = !0, "value" in n && (n.writable = !0), Object.defineProperty(e, n.key, n);
|
|
3772
|
+
n.enumerable = n.enumerable || !1, n.configurable = !0, "value" in n && (n.writable = !0), Object.defineProperty(e, _toPropertyKey(n.key), n);
|
|
3771
3773
|
}
|
|
3772
3774
|
}
|
|
3773
3775
|
function _createClass(e, t, r) {
|
|
@@ -3776,7 +3778,7 @@ function _createClass(e, t, r) {
|
|
|
3776
3778
|
}), e;
|
|
3777
3779
|
}
|
|
3778
3780
|
function _defineProperty(e, t, r) {
|
|
3779
|
-
return t in e ? Object.defineProperty(e, t, {
|
|
3781
|
+
return (t = _toPropertyKey(t)) in e ? Object.defineProperty(e, t, {
|
|
3780
3782
|
value: r,
|
|
3781
3783
|
enumerable: !0,
|
|
3782
3784
|
configurable: !0,
|
|
@@ -3791,21 +3793,26 @@ function _slicedToArray(e, t) {
|
|
|
3791
3793
|
if (null != r) {
|
|
3792
3794
|
var n,
|
|
3793
3795
|
a,
|
|
3794
|
-
o
|
|
3795
|
-
i
|
|
3796
|
-
c =
|
|
3796
|
+
o,
|
|
3797
|
+
i,
|
|
3798
|
+
c = [],
|
|
3799
|
+
s = !0,
|
|
3800
|
+
u = !1;
|
|
3797
3801
|
try {
|
|
3798
|
-
|
|
3802
|
+
if (o = (r = r.call(e)).next, 0 === t) {
|
|
3803
|
+
if (Object(r) !== r) return;
|
|
3804
|
+
s = !1;
|
|
3805
|
+
} else for (; !(s = (n = o.call(r)).done) && (c.push(n.value), c.length !== t); s = !0);
|
|
3799
3806
|
} catch (e) {
|
|
3800
|
-
|
|
3807
|
+
u = !0, a = e;
|
|
3801
3808
|
} finally {
|
|
3802
3809
|
try {
|
|
3803
|
-
|
|
3810
|
+
if (!s && null != r.return && (i = r.return(), Object(i) !== i)) return;
|
|
3804
3811
|
} finally {
|
|
3805
|
-
if (
|
|
3812
|
+
if (u) throw a;
|
|
3806
3813
|
}
|
|
3807
3814
|
}
|
|
3808
|
-
return
|
|
3815
|
+
return c;
|
|
3809
3816
|
}
|
|
3810
3817
|
}(e, t) || _unsupportedIterableToArray(e, t) || function _nonIterableRest() {
|
|
3811
3818
|
throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.");
|
|
@@ -3823,6 +3830,19 @@ function _arrayLikeToArray(e, t) {
|
|
|
3823
3830
|
for (var r = 0, n = new Array(t); r < t; r++) n[r] = e[r];
|
|
3824
3831
|
return n;
|
|
3825
3832
|
}
|
|
3833
|
+
function _toPropertyKey(e) {
|
|
3834
|
+
var t = function _toPrimitive(e, t) {
|
|
3835
|
+
if ("object" != typeof e || null === e) return e;
|
|
3836
|
+
var r = e[Symbol.toPrimitive];
|
|
3837
|
+
if (void 0 !== r) {
|
|
3838
|
+
var n = r.call(e, t || "default");
|
|
3839
|
+
if ("object" != typeof n) return n;
|
|
3840
|
+
throw new TypeError("@@toPrimitive must return a primitive value.");
|
|
3841
|
+
}
|
|
3842
|
+
return ("string" === t ? String : Number)(e);
|
|
3843
|
+
}(e, "string");
|
|
3844
|
+
return "symbol" == typeof t ? t : String(t);
|
|
3845
|
+
}
|
|
3826
3846
|
var e = _createClass(function TypesonPromise(e) {
|
|
3827
3847
|
_classCallCheck(this, TypesonPromise), this.p = new Promise(e);
|
|
3828
3848
|
});
|
|
@@ -3883,10 +3903,10 @@ function isObject(e) {
|
|
|
3883
3903
|
return e && "object" === _typeof(e);
|
|
3884
3904
|
}
|
|
3885
3905
|
function escapeKeyPathComponent(e) {
|
|
3886
|
-
return e.replace(/~/g, "~0").replace(/\./g, "~1");
|
|
3906
|
+
return e.replace(/''/g, "''''").replace(/^$/, "''").replace(/~/g, "~0").replace(/\./g, "~1");
|
|
3887
3907
|
}
|
|
3888
3908
|
function unescapeKeyPathComponent(e) {
|
|
3889
|
-
return e.replace(/~1/g, ".").replace(/~0/g, "~");
|
|
3909
|
+
return e.replace(/~1/g, ".").replace(/~0/g, "~").replace(/^''$/, "").replace(/''''/g, "''");
|
|
3890
3910
|
}
|
|
3891
3911
|
function getByKeyPath(e, t) {
|
|
3892
3912
|
if ("" === t) return e;
|
|
@@ -4151,7 +4171,7 @@ var u = function () {
|
|
|
4151
4171
|
end: !0
|
|
4152
4172
|
});
|
|
4153
4173
|
if (s.iterateUnsetNumeric) {
|
|
4154
|
-
for (var
|
|
4174
|
+
for (var N = r.length, P = function _loop2(n) {
|
|
4155
4175
|
if (!(n in r)) {
|
|
4156
4176
|
var o = t + (t ? "." : "") + n;
|
|
4157
4177
|
_adaptBuiltinStateObjectProperties(s, {
|
|
@@ -4161,7 +4181,7 @@ var u = function () {
|
|
|
4161
4181
|
hasConstructorOf(t, e) ? u.push([o, t, Boolean(a), s, _, n, s.type]) : void 0 !== t && (_[n] = t);
|
|
4162
4182
|
});
|
|
4163
4183
|
}
|
|
4164
|
-
},
|
|
4184
|
+
}, E = 0; E < N; E++) P(E);
|
|
4165
4185
|
O && O({
|
|
4166
4186
|
endIterateUnsetNumeric: !0,
|
|
4167
4187
|
end: !0
|
|
@@ -4553,16 +4573,68 @@ const A = {
|
|
|
4553
4573
|
revive: e => "NaN" === e ? new Date(Number.NaN) : new Date(e)
|
|
4554
4574
|
}
|
|
4555
4575
|
},
|
|
4576
|
+
T = {
|
|
4577
|
+
error: {
|
|
4578
|
+
test: e => "Error" === toStringTag(e),
|
|
4579
|
+
replace: ({
|
|
4580
|
+
name: e,
|
|
4581
|
+
message: t,
|
|
4582
|
+
cause: r,
|
|
4583
|
+
stack: n,
|
|
4584
|
+
fileName: a,
|
|
4585
|
+
lineNumber: o,
|
|
4586
|
+
columnNumber: i
|
|
4587
|
+
}) => ({
|
|
4588
|
+
name: e,
|
|
4589
|
+
message: t,
|
|
4590
|
+
cause: r,
|
|
4591
|
+
stack: n,
|
|
4592
|
+
fileName: a,
|
|
4593
|
+
lineNumber: o,
|
|
4594
|
+
columnNumber: i
|
|
4595
|
+
}),
|
|
4596
|
+
revive(e) {
|
|
4597
|
+
const t = new Error(e.message);
|
|
4598
|
+
return ["name", "cause", "stack", "fileName", "lineNumber", "columnNumber"].forEach(r => {
|
|
4599
|
+
t[r] = e[r];
|
|
4600
|
+
}), t;
|
|
4601
|
+
}
|
|
4602
|
+
}
|
|
4603
|
+
},
|
|
4556
4604
|
I = {};
|
|
4557
4605
|
function create$2(e) {
|
|
4558
4606
|
I[e.name.toLowerCase()] = {
|
|
4559
4607
|
test: t => hasConstructorOf(t, e),
|
|
4560
|
-
replace:
|
|
4561
|
-
|
|
4608
|
+
replace: ({
|
|
4609
|
+
name: e,
|
|
4610
|
+
message: t,
|
|
4611
|
+
cause: r,
|
|
4612
|
+
stack: n,
|
|
4613
|
+
fileName: a,
|
|
4614
|
+
lineNumber: o,
|
|
4615
|
+
columnNumber: i,
|
|
4616
|
+
errors: c
|
|
4617
|
+
}) => ({
|
|
4618
|
+
name: e,
|
|
4619
|
+
message: t,
|
|
4620
|
+
cause: r,
|
|
4621
|
+
stack: n,
|
|
4622
|
+
fileName: a,
|
|
4623
|
+
lineNumber: o,
|
|
4624
|
+
columnNumber: i,
|
|
4625
|
+
errors: c
|
|
4626
|
+
}),
|
|
4627
|
+
revive(t) {
|
|
4628
|
+
const r = "undefined" != typeof AggregateError && e === AggregateError,
|
|
4629
|
+
n = r ? new e(t.errors, t.message) : new e(t.message);
|
|
4630
|
+
return ["name", "cause", "stack", "fileName", "lineNumber", "columnNumber"].forEach(e => {
|
|
4631
|
+
n[e] = t[e];
|
|
4632
|
+
}), r && (n.errors = t.errors), n;
|
|
4633
|
+
}
|
|
4562
4634
|
};
|
|
4563
4635
|
}
|
|
4564
|
-
[TypeError, RangeError, SyntaxError, ReferenceError, EvalError, URIError].forEach(e => create$2(e)), "function" == typeof InternalError && create$2(InternalError);
|
|
4565
|
-
const
|
|
4636
|
+
[TypeError, RangeError, SyntaxError, ReferenceError, EvalError, URIError].forEach(e => create$2(e)), "undefined" != typeof AggregateError && create$2(AggregateError), "function" == typeof InternalError && create$2(InternalError);
|
|
4637
|
+
const N = {
|
|
4566
4638
|
file: {
|
|
4567
4639
|
test: e => "File" === toStringTag(e),
|
|
4568
4640
|
replace(e) {
|
|
@@ -4599,8 +4671,8 @@ const P = {
|
|
|
4599
4671
|
})
|
|
4600
4672
|
}
|
|
4601
4673
|
},
|
|
4602
|
-
|
|
4603
|
-
file:
|
|
4674
|
+
P = {
|
|
4675
|
+
file: N.file,
|
|
4604
4676
|
filelist: {
|
|
4605
4677
|
test: e => "FileList" === toStringTag(e),
|
|
4606
4678
|
replace(e) {
|
|
@@ -4624,7 +4696,7 @@ const P = {
|
|
|
4624
4696
|
}
|
|
4625
4697
|
}
|
|
4626
4698
|
},
|
|
4627
|
-
|
|
4699
|
+
E = {
|
|
4628
4700
|
imagebitmap: {
|
|
4629
4701
|
test: e => "ImageBitmap" === toStringTag(e) || e && e.dataset && "ImageBitmap" === e.dataset.toStringTag,
|
|
4630
4702
|
replace(e) {
|
|
@@ -4649,7 +4721,7 @@ const P = {
|
|
|
4649
4721
|
}
|
|
4650
4722
|
}
|
|
4651
4723
|
},
|
|
4652
|
-
|
|
4724
|
+
C = {
|
|
4653
4725
|
imagedata: {
|
|
4654
4726
|
test: e => "ImageData" === toStringTag(e),
|
|
4655
4727
|
replace: e => ({
|
|
@@ -4823,7 +4895,7 @@ const W = {
|
|
|
4823
4895
|
}
|
|
4824
4896
|
}],
|
|
4825
4897
|
X = [K, x, L],
|
|
4826
|
-
te = [G, W, H, D, X, j, M, E,
|
|
4898
|
+
te = [G, W, H, D, X, j, M, C, E, N, P, O, T, I].concat("function" == typeof Map ? U : [], "function" == typeof Set ? J : [], "function" == typeof ArrayBuffer ? h : [], "function" == typeof Uint8Array ? q : [], "function" == typeof DataView ? w : [], "undefined" != typeof Intl ? B : [], "undefined" != typeof crypto ? A : [], "undefined" != typeof BigInt ? [m, g] : []);
|
|
4827
4899
|
var re = te.concat({
|
|
4828
4900
|
checkDataCloneException: {
|
|
4829
4901
|
test(e) {
|
|
@@ -4877,9 +4949,9 @@ function clone(val) {
|
|
|
4877
4949
|
|
|
4878
4950
|
var Sca = /*#__PURE__*/Object.freeze({
|
|
4879
4951
|
__proto__: null,
|
|
4880
|
-
encode: encode,
|
|
4881
|
-
decode: decode,
|
|
4882
4952
|
clone: clone,
|
|
4953
|
+
decode: decode,
|
|
4954
|
+
encode: encode,
|
|
4883
4955
|
register: register
|
|
4884
4956
|
});
|
|
4885
4957
|
|
|
@@ -6499,9 +6571,9 @@ Object.defineProperty(IDBDatabase, 'prototype', {
|
|
|
6499
6571
|
});
|
|
6500
6572
|
|
|
6501
6573
|
/* globals location */
|
|
6502
|
-
let fs
|
|
6574
|
+
let fs;
|
|
6503
6575
|
const setFS = _fs => {
|
|
6504
|
-
fs
|
|
6576
|
+
fs = _fs;
|
|
6505
6577
|
};
|
|
6506
6578
|
const getOrigin = () => {
|
|
6507
6579
|
return typeof location !== 'object' || !location ? 'null' : location.origin;
|
|
@@ -6638,8 +6710,8 @@ function cleanupDatabaseResources(__openDatabase, name, escapedDatabaseName, dat
|
|
|
6638
6710
|
});
|
|
6639
6711
|
return;
|
|
6640
6712
|
}
|
|
6641
|
-
if (fs
|
|
6642
|
-
fs
|
|
6713
|
+
if (fs && CFG.deleteDatabaseFiles !== false) {
|
|
6714
|
+
fs.unlink(path.join(CFG.databaseBasePath || '', escapedDatabaseName), err => {
|
|
6643
6715
|
if (err && err.code !== 'ENOENT') {
|
|
6644
6716
|
// Ignore if file is already deleted
|
|
6645
6717
|
dbError({
|
|
@@ -8131,22 +8203,20 @@ const UnicodeIDContinue = '(?:[$0-9A-Z_a-z\\xAA\\xB5\\xB7\\xBA\\xC0-\\xD6\\xD8-\
|
|
|
8131
8203
|
|
|
8132
8204
|
var UnicodeIdentifiers = /*#__PURE__*/Object.freeze({
|
|
8133
8205
|
__proto__: null,
|
|
8134
|
-
|
|
8135
|
-
|
|
8206
|
+
UnicodeIDContinue: UnicodeIDContinue,
|
|
8207
|
+
UnicodeIDStart: UnicodeIDStart
|
|
8136
8208
|
});
|
|
8137
8209
|
|
|
8138
|
-
// eslint-disable-next-line import/no-commonjs
|
|
8139
|
-
const fs = require('fs');
|
|
8140
8210
|
CFG.win = {
|
|
8141
8211
|
openDatabase: nodeWebSQL
|
|
8142
8212
|
};
|
|
8143
8213
|
const __setGlobalVars = function (idb, initialConfig = {}) {
|
|
8144
8214
|
const obj = setGlobalVars(idb, _objectSpread2$1({
|
|
8145
|
-
fs
|
|
8215
|
+
fs: fs$1
|
|
8146
8216
|
}, initialConfig));
|
|
8147
8217
|
obj.shimIndexedDB.__setUnicodeIdentifiers(UnicodeIdentifiers);
|
|
8148
8218
|
return obj;
|
|
8149
8219
|
};
|
|
8150
8220
|
|
|
8151
8221
|
module.exports = __setGlobalVars;
|
|
8152
|
-
//# sourceMappingURL=indexeddbshim-UnicodeIdentifiers-node.
|
|
8222
|
+
//# sourceMappingURL=indexeddbshim-UnicodeIdentifiers-node.cjs.map
|