@keyv/sqlite
Advanced tools
Comparing version 3.6.6 to 3.6.7
@@ -27,4 +27,5 @@ "use strict"; | ||
var g = generator.apply(thisArg, _arguments || []), i, q = []; | ||
return i = {}, verb("next"), verb("throw"), verb("return"), i[Symbol.asyncIterator] = function () { return this; }, i; | ||
function verb(n) { if (g[n]) i[n] = function (v) { return new Promise(function (a, b) { q.push([n, v, a, b]) > 1 || resume(n, v); }); }; } | ||
return i = {}, verb("next"), verb("throw"), verb("return", awaitReturn), i[Symbol.asyncIterator] = function () { return this; }, i; | ||
function awaitReturn(f) { return function (v) { return Promise.resolve(v).then(f, reject); }; } | ||
function verb(n, f) { if (g[n]) { i[n] = function (v) { return new Promise(function (a, b) { q.push([n, v, a, b]) > 1 || resume(n, v); }); }; if (f) i[n] = f(i[n]); } } | ||
function resume(n, v) { try { step(g[n](v)); } catch (e) { settle(q[0][3], e); } } | ||
@@ -31,0 +32,0 @@ function step(r) { r.value instanceof __await ? Promise.resolve(r.value.v).then(fulfill, reject) : settle(q[0][2], r); } |
{ | ||
"name": "@keyv/sqlite", | ||
"version": "3.6.6", | ||
"version": "3.6.7", | ||
"description": "SQLite storage adapter for Keyv", | ||
@@ -68,3 +68,3 @@ "main": "./dist/index.js", | ||
"dependencies": { | ||
"sqlite3": "^5.1.6" | ||
"sqlite3": "^5.1.7" | ||
}, | ||
@@ -75,4 +75,4 @@ "devDependencies": { | ||
"requirable": "^1.0.5", | ||
"ts-node": "^10.9.1", | ||
"tsd": "^0.29.0" | ||
"ts-node": "^10.9.2", | ||
"tsd": "^0.30.4" | ||
}, | ||
@@ -79,0 +79,0 @@ "tsd": { |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
Major refactor
Supply chain riskPackage has recently undergone a major refactor. It may be unstable or indicate significant internal changes. Use caution when updating to versions that include significant changes.
Found 1 instance in 1 package
20366
239
0
Updatedsqlite3@^5.1.7