indexeddbshim 17.4.0 → 17.4.1
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/IDBFactory.d.ts +4 -4
- package/dist/IDBFactory.d.ts.map +1 -1
- package/dist/indexeddbshim-Key.js +1 -1
- package/dist/indexeddbshim-Key.min.js +1 -1
- package/dist/indexeddbshim-UnicodeIdentifiers-node.cjs +5 -5
- package/dist/indexeddbshim-UnicodeIdentifiers-node.cjs.map +1 -1
- package/dist/indexeddbshim-UnicodeIdentifiers.js +3 -3
- package/dist/indexeddbshim-UnicodeIdentifiers.js.map +1 -1
- package/dist/indexeddbshim-UnicodeIdentifiers.min.js +1 -1
- package/dist/indexeddbshim-UnicodeIdentifiers.min.js.map +1 -1
- package/dist/indexeddbshim-node.cjs +5 -5
- package/dist/indexeddbshim-node.cjs.map +1 -1
- package/dist/indexeddbshim-noninvasive.js +3 -3
- package/dist/indexeddbshim-noninvasive.js.map +1 -1
- package/dist/indexeddbshim-noninvasive.min.js +1 -1
- package/dist/indexeddbshim-noninvasive.min.js.map +1 -1
- package/dist/indexeddbshim.js +3 -3
- package/dist/indexeddbshim.js.map +1 -1
- package/dist/indexeddbshim.min.js +1 -1
- package/dist/indexeddbshim.min.js.map +1 -1
- package/dist/node-UnicodeIdentifiers.d.ts +3 -3
- package/dist/node-UnicodeIdentifiers.d.ts.map +1 -1
- package/dist/node.d.ts +3 -3
- package/dist/node.d.ts.map +1 -1
- package/package.json +4 -2
- package/src/IDBFactory.js +2 -2
- package/src/node-UnicodeIdentifiers.js +2 -2
- package/src/node.js +2 -2
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! indexeddbshim - v17.4.
|
|
1
|
+
/*! indexeddbshim - v17.4.1 - 8/29/2026 */
|
|
2
2
|
|
|
3
3
|
'use strict';
|
|
4
4
|
|
|
@@ -11150,8 +11150,8 @@ IDBFactory.prototype.cmp = function (key1, key2) {
|
|
|
11150
11150
|
* @see https://github.com/w3c/IndexedDB/pull/240/files
|
|
11151
11151
|
* @this {IDBFactoryFull}
|
|
11152
11152
|
* @returns {Promise<{
|
|
11153
|
-
* name
|
|
11154
|
-
* version
|
|
11153
|
+
* name?: string,
|
|
11154
|
+
* version?: Integer
|
|
11155
11155
|
* }[]>}
|
|
11156
11156
|
*/
|
|
11157
11157
|
IDBFactory.prototype.databases = function () {
|
|
@@ -15026,8 +15026,8 @@ CFG.win = {
|
|
|
15026
15026
|
};
|
|
15027
15027
|
|
|
15028
15028
|
/**
|
|
15029
|
-
* @param {import('./setGlobalVars.js').ShimmedObject} idb
|
|
15030
|
-
* @param {Partial<import('./CFG.js').ConfigValues>} initialConfig
|
|
15029
|
+
* @param {import('./setGlobalVars.js').ShimmedObject} [idb]
|
|
15030
|
+
* @param {Partial<import('./CFG.js').ConfigValues>} [initialConfig]
|
|
15031
15031
|
* @returns {import('./setGlobalVars.js').ShimmedObject|Window}
|
|
15032
15032
|
*/
|
|
15033
15033
|
const __setGlobalVars = function (idb, initialConfig = {}) {
|