Skip to content

Commit 9b6c697

Browse files
committed
Bump min node version in semver check
1 parent 0eb62ca commit 9b6c697

File tree

2 files changed

+3
-6
lines changed

2 files changed

+3
-6
lines changed

lib/sqlite3.js

+2-5
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ Database.create = async function(filename, mode) {
5858
// Database#prepare(sql, [bind1, bind2, ...])
5959
Database.prototype.prepare = normalizeMethod(function(statement, params) {
6060
return params.length
61-
? statement.bind.apply(statement, params)
61+
? statement.bind(...params)
6262
: statement;
6363
});
6464

@@ -85,16 +85,13 @@ Database.prototype.all = normalizeMethod(function(statement, params) {
8585

8686
// Database#each(sql, [bind1, bind2, ...], [complete])
8787
Database.prototype.each = normalizeMethod(async function*(statement, params) {
88-
// return statement.each.apply(statement, params).then(() => statement.finalize());
89-
// TODO: maybe need to figure out how to finalize this statement at the end?
9088
try {
9189
for await (const row of statement.each(...params)) {
9290
yield row;
9391
}
9492
} finally {
9593
await statement.finalize();
96-
}
97-
94+
}
9895
});
9996

10097
Database.prototype.map = normalizeMethod(function(statement, params) {

tools/semver-check.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ const fs = require('fs');
22
const path = require('path');
33
const semver = require('semver');
44

5-
const supportedVersions = '10.12.0';
5+
const supportedVersions = '16.0.0';
66

77
function checkEngines(modulePath) {
88
const packageJsonPath = path.join(modulePath, 'package.json');

0 commit comments

Comments
 (0)