We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 10f2081 commit 1832c63Copy full SHA for 1832c63
packages/sqlite/src/index.ts
@@ -69,7 +69,7 @@ export class KeyvSqlite extends EventEmitter implements KeyvStoreAdapter {
69
this.query = async (sqlString, ...parameter) => connected
70
.then(async database => database.query(sqlString, ...parameter));
71
72
- this.close = async () => connected.then(database => database.close);
+ this.close = async () => connected.then(database => database.close());
73
}
74
75
async get<Value>(key: string) {
0 commit comments