diff options
Diffstat (limited to 'ext/bg/js/util.js')
-rw-r--r-- | ext/bg/js/util.js | 18 |
1 files changed, 13 insertions, 5 deletions
diff --git a/ext/bg/js/util.js b/ext/bg/js/util.js index 1e033eef..f10e4291 100644 --- a/ext/bg/js/util.js +++ b/ext/bg/js/util.js @@ -30,6 +30,19 @@ function kanjiLinks(options) { return result; } +function isKanji(c) { + const code = c.charCodeAt(0); + return code >= 0x4e00 && code < 0x9fb0 || code >= 0x3400 && code < 0x4dc0; +} + +function promiseCallback(promise, callback) { + return promise.then(result => { + callback({result}); + }).catch(error => { + callback({error}); + }); +} + function loadJson(url) { return new Promise((resolve, reject) => { const xhr = new XMLHttpRequest(); @@ -39,11 +52,6 @@ function loadJson(url) { }); } -function isKanji(c) { - const code = c.charCodeAt(0); - return code >= 0x4e00 && code < 0x9fb0 || code >= 0x3400 && code < 0x4dc0; -} - function sortTags(tags) { return tags.sort((v1, v2) => { const order1 = v1.order; |