summaryrefslogtreecommitdiff
path: root/ext/bg/js
diff options
context:
space:
mode:
authortoasted-nutbread <toasted-nutbread@users.noreply.github.com>2020-02-22 12:07:09 -0500
committerGitHub <noreply@github.com>2020-02-22 12:07:09 -0500
commit0e31139734efd51799efcb6357c074059c78858d (patch)
tree87604c886aa8bfcdd1787809d6a20e3f2057597f /ext/bg/js
parent174d9e7429a0f7a45538e56a594ce627239d80c3 (diff)
parent1e573f36c416b3955b2e679c8f3ce7ffa91bf504 (diff)
Merge pull request #371 from toasted-nutbread/database-tests
Database tests
Diffstat (limited to 'ext/bg/js')
-rw-r--r--ext/bg/js/database.js6
1 files changed, 6 insertions, 0 deletions
diff --git a/ext/bg/js/database.js b/ext/bg/js/database.js
index b54d832c..02d59c83 100644
--- a/ext/bg/js/database.js
+++ b/ext/bg/js/database.js
@@ -96,6 +96,12 @@ class Database {
}
}
+ async close() {
+ this.validate();
+ this.db.close();
+ this.db = null;
+ }
+
async purge() {
this.validate();