diff options
author | (quasar) nebula <qznebula@protonmail.com> | 2022-06-26 20:57:06 -0300 |
---|---|---|
committer | (quasar) nebula <qznebula@protonmail.com> | 2022-06-26 20:57:06 -0300 |
commit | 08b700bb14e5e12c1dff283e2eef729816a97f15 (patch) | |
tree | 0494ff87d7ede3e0d7f561063c08c74011204486 /src/util/html.js | |
parent | c6e9aba1f6d1239b3d884c2749d1f0d15c7662a1 (diff) |
lots of fixes from eslint
Diffstat (limited to 'src/util/html.js')
-rw-r--r-- | src/util/html.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/util/html.js b/src/util/html.js index f5b7bdcc..0ba923b3 100644 --- a/src/util/html.js +++ b/src/util/html.js @@ -102,7 +102,7 @@ export function attributes(attribs) { `Attribute value for ${key} should be primitive or array, got ${typeof val}` ); }) - .filter(([key, val, keep]) => keep) + .filter(([_key, _val, keep]) => keep) .map(([key, val]) => typeof val === 'boolean' ? `${key}` |