ueberdb2 4.2.93 → 4.2.94
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/index.js +6 -7
- package/package.json +4 -4
package/dist/index.js
CHANGED
|
@@ -191324,7 +191324,6 @@ function isArrayLike$1(value) {
|
|
|
191324
191324
|
// A temporary value used to identify if the loop should be broken.
|
|
191325
191325
|
// See #1064, #1293
|
|
191326
191326
|
const breakLoop = {};
|
|
191327
|
-
var breakLoop$1 = breakLoop;
|
|
191328
191327
|
|
|
191329
191328
|
function once$2(fn) {
|
|
191330
191329
|
function wrapper (...args) {
|
|
@@ -191435,7 +191434,7 @@ function asyncEachOfLimit(generator, limit, iteratee, callback) {
|
|
|
191435
191434
|
return
|
|
191436
191435
|
}
|
|
191437
191436
|
|
|
191438
|
-
if (result === breakLoop
|
|
191437
|
+
if (result === breakLoop || (done && running <= 0)) {
|
|
191439
191438
|
done = true;
|
|
191440
191439
|
//console.log('done iterCb')
|
|
191441
191440
|
return callback(null);
|
|
@@ -191485,7 +191484,7 @@ var eachOfLimit$2 = (limit) => {
|
|
|
191485
191484
|
done = true;
|
|
191486
191485
|
canceled = true;
|
|
191487
191486
|
}
|
|
191488
|
-
else if (value === breakLoop
|
|
191487
|
+
else if (value === breakLoop || (done && running <= 0)) {
|
|
191489
191488
|
done = true;
|
|
191490
191489
|
return callback(null);
|
|
191491
191490
|
}
|
|
@@ -191560,7 +191559,7 @@ function eachOfArrayLike(coll, iteratee, callback) {
|
|
|
191560
191559
|
if (canceled === true) return
|
|
191561
191560
|
if (err) {
|
|
191562
191561
|
callback(err);
|
|
191563
|
-
} else if ((++completed === length) || value === breakLoop
|
|
191562
|
+
} else if ((++completed === length) || value === breakLoop) {
|
|
191564
191563
|
callback(null);
|
|
191565
191564
|
}
|
|
191566
191565
|
}
|
|
@@ -192256,8 +192255,8 @@ function auto(tasks, concurrency, callback) {
|
|
|
192256
192255
|
return callback[PROMISE_SYMBOL]
|
|
192257
192256
|
}
|
|
192258
192257
|
|
|
192259
|
-
var FN_ARGS = /^(?:async\s
|
|
192260
|
-
var ARROW_FN_ARGS = /^(?:async\s
|
|
192258
|
+
var FN_ARGS = /^(?:async\s)?(?:function)?\s*(?:\w+\s*)?\(([^)]+)\)(?:\s*{)/;
|
|
192259
|
+
var ARROW_FN_ARGS = /^(?:async\s)?\s*(?:\(\s*)?((?:[^)=\s]\s*)*)(?:\)\s*)?=>/;
|
|
192261
192260
|
var FN_ARG_SPLIT = /,/;
|
|
192262
192261
|
var FN_ARG = /(=.+)?(\s*)$/;
|
|
192263
192262
|
|
|
@@ -193380,7 +193379,7 @@ function _createTester(check, getResult) {
|
|
|
193380
193379
|
if (check(result) && !testResult) {
|
|
193381
193380
|
testPassed = true;
|
|
193382
193381
|
testResult = getResult(true, value);
|
|
193383
|
-
return callback(null, breakLoop
|
|
193382
|
+
return callback(null, breakLoop);
|
|
193384
193383
|
}
|
|
193385
193384
|
callback();
|
|
193386
193385
|
});
|
package/package.json
CHANGED
|
@@ -31,9 +31,9 @@
|
|
|
31
31
|
"@types/better-sqlite3": "^7.6.11",
|
|
32
32
|
"@types/mssql": "^9.1.5",
|
|
33
33
|
"@types/node": "^22.3.0",
|
|
34
|
-
"@types/pg": "^8.11.
|
|
34
|
+
"@types/pg": "^8.11.8",
|
|
35
35
|
"@types/rethinkdb": "^2.3.21",
|
|
36
|
-
"async": "^3.2.
|
|
36
|
+
"async": "^3.2.6",
|
|
37
37
|
"better-sqlite3": "^11.1.2",
|
|
38
38
|
"cassandra-driver": "^4.7.2",
|
|
39
39
|
"cli-table": "^0.3.11",
|
|
@@ -57,14 +57,14 @@
|
|
|
57
57
|
"typescript": "^5.5.4",
|
|
58
58
|
"vitest": "^2.0.5",
|
|
59
59
|
"wtfnode": "^0.9.3",
|
|
60
|
-
"rollup": "^4.
|
|
60
|
+
"rollup": "^4.21.2"
|
|
61
61
|
},
|
|
62
62
|
"repository": {
|
|
63
63
|
"type": "git",
|
|
64
64
|
"url": "https://github.com/ether/ueberDB.git"
|
|
65
65
|
},
|
|
66
66
|
"main": "./dist/index.js",
|
|
67
|
-
"version": "4.2.
|
|
67
|
+
"version": "4.2.94",
|
|
68
68
|
"bugs": {
|
|
69
69
|
"url": "https://github.com/ether/ueberDB/issues"
|
|
70
70
|
},
|