diff options
author | toasted-nutbread <toasted-nutbread@users.noreply.github.com> | 2023-12-18 23:41:23 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-12-19 04:41:23 +0000 |
commit | 6b07b1e6e158f718fd30c44878a72c3b6ad83fa0 (patch) | |
tree | 0b95307e82416ff154c412b42c8eeaa033dac24f /ext/js/app | |
parent | 1d268edcc3efce723954bcaa7dd376f0352c1a32 (diff) |
IIFE updates (#384)
* Remove most IIFEs
* Move IIFEs into functions
* Don't await background-main
Diffstat (limited to 'ext/js/app')
-rw-r--r-- | ext/js/app/content-script-main.js | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/ext/js/app/content-script-main.js b/ext/js/app/content-script-main.js index 972d032c..7b76fda0 100644 --- a/ext/js/app/content-script-main.js +++ b/ext/js/app/content-script-main.js @@ -22,7 +22,8 @@ import {yomitan} from '../yomitan.js'; import {Frontend} from './frontend.js'; import {PopupFactory} from './popup-factory.js'; -(async () => { +/** Entry point. */ +async function main() { try { await yomitan.prepare(); @@ -57,4 +58,6 @@ import {PopupFactory} from './popup-factory.js'; } catch (e) { log.error(e); } -})(); +} + +await main(); |