diff options
author | toasted-nutbread <toasted-nutbread@users.noreply.github.com> | 2020-07-19 22:05:37 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-07-19 22:05:37 -0400 |
commit | d7aaab685ee23ebcd60b69211b02f6a66f57fa17 (patch) | |
tree | ca59e232aa7b1220d994887bf5caa383386917bc /ext/bg/js/dictionary-importer.js | |
parent | 8aa7bc1eec23ee7f347aacd63a21552762c4e2b8 (diff) |
Dev dependencies updates (#679)
* Update eslint to 7.5.0
* Update eslint-plugin-no-unsanitized to 3.1.2
* Update fake-indexeddb to 3.1.1
* Rename DictionaryImporter.import to .importDictionary
Conflicts with o-unsanitized/method
Diffstat (limited to 'ext/bg/js/dictionary-importer.js')
-rw-r--r-- | ext/bg/js/dictionary-importer.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/bg/js/dictionary-importer.js b/ext/bg/js/dictionary-importer.js index 12f3129d..69d5c386 100644 --- a/ext/bg/js/dictionary-importer.js +++ b/ext/bg/js/dictionary-importer.js @@ -27,7 +27,7 @@ class DictionaryImporter { this._schemas = new Map(); } - async import(dictionaryDatabase, archiveSource, details, onProgress) { + async importDictionary(dictionaryDatabase, archiveSource, details, onProgress) { if (!dictionaryDatabase) { throw new Error('Invalid database'); } |