diff options
author | toasted-nutbread <toasted-nutbread@users.noreply.github.com> | 2021-02-28 13:33:33 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-02-28 13:33:33 -0500 |
commit | 6f76645f4cf0005ddb1022406fdf259a5117ce26 (patch) | |
tree | 20352bc282d79149f908ab4fee283365c4c1885b /ext | |
parent | 445f87ebdb01badd5fd62a44bb165e23351e10c6 (diff) |
Use a Set instead of an array (#1463)
Diffstat (limited to 'ext')
-rw-r--r-- | ext/js/display/display-generator.js | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ext/js/display/display-generator.js b/ext/js/display/display-generator.js index 91dc0862..1d824507 100644 --- a/ext/js/display/display-generator.js +++ b/ext/js/display/display-generator.js @@ -724,15 +724,15 @@ class DisplayGenerator { _getPitchAccentCategories(pitches) { if (pitches.length === 0) { return null; } - const categories = []; + const categories = new Set(); for (const {reading, pitches: pitches2} of pitches) { for (const {position} of pitches2) { const category = this._japaneseUtil.getPitchCategory(reading, position, false); if (category !== null) { - categories.push(category); + categories.add(category); } } } - return categories.length > 0 ? categories.join(' ') : null; + return categories.size > 0 ? [...categories].join(' ') : null; } } |