fix(dev): Module load issues with syntax

js: I can't wait until I'm done with the TypeScript conversion. It's just gonna save so much time because you don't have to worry about syntax not being supported or stuff like that.
This commit is contained in:
tecc 2022-09-28 00:19:06 +02:00
parent 22dc272da9
commit 329e97e681

View File

@ -262,7 +262,7 @@
function coerceWords(words) {
for (let i = 0; i < 4; i++) {
words[i] ??= {
words[i] = words[i] ? words[i] : {
header: null,
values: []
}