indexeddbshim 15.0.3 → 15.0.4

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "indexeddbshim",
3
- "version": "15.0.3",
3
+ "version": "15.0.4",
4
4
  "type": "module",
5
5
  "author": "Parashuram <code@nparashuram.com>",
6
6
  "contributors": [
package/src/IDBFactory.js CHANGED
@@ -946,7 +946,7 @@ IDBFactory.prototype.deleteDatabase = function (name) {
946
946
  * @param {import('./Key.js').Key} key1
947
947
  * @param {import('./Key.js').Key} key2
948
948
  * @throws {TypeError}
949
- * @returns {0|1|-1}
949
+ * @returns {number}
950
950
  */
951
951
  IDBFactory.prototype.cmp = function (key1, key2) {
952
952
  if (!(this instanceof IDBFactory)) {
@@ -61,7 +61,7 @@ function setConfig (prop, val) {
61
61
  /**
62
62
  * @typedef {(
63
63
  * prop: import('./CFG.js').KeyofConfigValues
64
- * ) => import('../src/CFG.js').ConfigValue} GetConfig
64
+ * ) => import('./CFG.js').ConfigValue} GetConfig
65
65
  */
66
66
 
67
67
  /**