diff options
author | toasted-nutbread <toasted-nutbread@users.noreply.github.com> | 2024-01-15 06:12:33 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-01-15 11:12:33 +0000 |
commit | 48f1d012ad5045319d4e492dfbefa39da92817b2 (patch) | |
tree | 51b5b53a7b1192f04a8292c3a9aa0f5063c64b46 /ext/js/comm | |
parent | 9cfa20cbd2289d82a5abf05a2e5ea8af5016222c (diff) |
Add toError utility function (#523)
* Add asError utility function
* Rename to toError
Diffstat (limited to 'ext/js/comm')
-rw-r--r-- | ext/js/comm/mecab.js | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/ext/js/comm/mecab.js b/ext/js/comm/mecab.js index 6d0f3f40..f3ad7b51 100644 --- a/ext/js/comm/mecab.js +++ b/ext/js/comm/mecab.js @@ -17,6 +17,7 @@ */ import {EventListenerCollection} from '../core.js'; +import {toError} from '../core/to-error.js'; /** * This class is used to connect Yomitan to a native component that is @@ -235,7 +236,7 @@ export class Mecab { try { await this._setupPortPromise; } catch (e) { - throw new Error(e instanceof Error ? e.message : `${e}`); + throw toError(e); } } |