ueberdb2 4.2.60 → 4.2.62

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.
Files changed (2) hide show
  1. package/dist/index.js +1 -1
  2. package/package.json +2 -2
package/dist/index.js CHANGED
@@ -297088,7 +297088,7 @@ class Postgres_db extends AbstractDatabase {
297088
297088
  }
297089
297089
  const functions = replaceVALs.map((v) => (cb) => this.db.query(this.upsertStatement, v, cb));
297090
297090
  const removeFunction = (callback) => {
297091
- if ((removeVALs.length == 1)) {
297091
+ if (!(removeVALs.length < 1)) {
297092
297092
  this.db.query(removeSQL, removeVALs, callback);
297093
297093
  }
297094
297094
  else {
package/package.json CHANGED
@@ -30,7 +30,7 @@
30
30
  "@types/async": "^3.2.24",
31
31
  "@types/better-sqlite3": "^7.6.9",
32
32
  "@types/mssql": "^9.1.5",
33
- "@types/node": "^20.11.24",
33
+ "@types/node": "^20.11.25",
34
34
  "@types/pg": "^8.11.2",
35
35
  "@types/rethinkdb": "^2.3.21",
36
36
  "async": "^3.2.5",
@@ -63,7 +63,7 @@
63
63
  "url": "https://github.com/ether/ueberDB.git"
64
64
  },
65
65
  "main": "./dist/index.js",
66
- "version": "4.2.60",
66
+ "version": "4.2.62",
67
67
  "bugs": {
68
68
  "url": "https://github.com/ether/ueberDB/issues"
69
69
  },