xdriver 1.0.2 → 1.0.3

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/lib/Const.d.ts CHANGED
@@ -20,7 +20,7 @@ export declare class KeyRange {
20
20
  static gt_lt(x: any, y: any): any;
21
21
  static gt_leq(x: any, y: any): any;
22
22
  static geq_lt(x: any, y: any): any;
23
- static eq(x: any, y: any): any;
23
+ static eq(x: any): any;
24
24
  }
25
25
  export declare enum IndexdbStatus {
26
26
  CONNECT_ING = 0,
package/lib/Const.js CHANGED
@@ -42,7 +42,7 @@ export class KeyRange {
42
42
  static geq_lt(x, y) {
43
43
  return DBKeyRange.bound(x, y, false, true);
44
44
  }
45
- static eq(x, y) {
45
+ static eq(x) {
46
46
  return DBKeyRange.only(x);
47
47
  }
48
48
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "xdriver",
3
- "version": "1.0.02",
3
+ "version": "1.0.03",
4
4
  "description": "A simple driver for IndexDB",
5
5
  "main": "./lib/index",
6
6
  "files": [