diff options
author | (quasar) nebula <qznebula@protonmail.com> | 2025-05-27 19:39:39 -0300 |
---|---|---|
committer | (quasar) nebula <qznebula@protonmail.com> | 2025-05-27 19:46:23 -0300 |
commit | 68a09934a1f38c0d0ea3fabc64a5390894d931fa (patch) | |
tree | 5493dcde92b75da67ffc1eb24d9d0c5fc1212ae5 /src/data/yaml.js | |
parent | 255102c21db9194535d304f181a2a0145e9b3c8a (diff) |
eslint: make use of optional catch binding more often
Diffstat (limited to 'src/data/yaml.js')
-rw-r--r-- | src/data/yaml.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/data/yaml.js b/src/data/yaml.js index e8d24353..9a0295b8 100644 --- a/src/data/yaml.js +++ b/src/data/yaml.js @@ -1022,7 +1022,7 @@ export const documentModes = { export function getAllDataSteps() { try { thingConstructors; - } catch (error) { + } catch { throw new Error(`Thing constructors aren't ready yet, can't get all data steps`); } |