diff options
author | (quasar) nebula <qznebula@protonmail.com> | 2024-02-25 22:13:14 -0400 |
---|---|---|
committer | (quasar) nebula <qznebula@protonmail.com> | 2024-02-25 22:13:14 -0400 |
commit | 79d4babd1e1132cbc26d92713690b290d1a5133a (patch) | |
tree | e61a6f9bddd6f58034c9f42582a7ee09f9fdcc05 /src | |
parent | 5a183f12ba50024975cb19fa3dbf635d7249d651 (diff) |
util: unhinged binding shenanigans for release compatibility
Diffstat (limited to 'src')
-rw-r--r-- | src/util/wiki-data.js | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/util/wiki-data.js b/src/util/wiki-data.js index 89c04a29..10668742 100644 --- a/src/util/wiki-data.js +++ b/src/util/wiki-data.js @@ -3,6 +3,12 @@ import {accumulateSum, empty} from './sugar.js'; import {sortByDate} from './sort.js'; +// This is a duplicate binding of filterMultipleArrays that's included purely +// to leave wiki-data.js compatible with the release build of HSMusic. +// Sorry! This is really ridiculous!! If the next update after 10/25/2023 has +// released, this binding is no longer needed! +export {filterMultipleArrays} from './sugar.js'; + // Generic value operations export function getKebabCase(name) { |