diff options
author | (quasar) nebula <qznebula@protonmail.com> | 2024-02-16 08:46:32 -0400 |
---|---|---|
committer | (quasar) nebula <qznebula@protonmail.com> | 2024-02-16 09:03:14 -0400 |
commit | b66548c3353b287064cfd94187871374ed0c520f (patch) | |
tree | fc9bab92dff0a1924c76592204e050263e7f510f | |
parent | 9de8ee5f608c961c01162197b389fb3dfdbe6005 (diff) |
html: minor eslint fixes
-rw-r--r-- | src/util/html.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/util/html.js b/src/util/html.js index 69819669..ddc0277a 100644 --- a/src/util/html.js +++ b/src/util/html.js @@ -170,7 +170,7 @@ export function metatag(identifier, ...args) { args[0] instanceof Tag || args[0] instanceof Template) ) { - opts = args[0]; + opts = args[0]; /* eslint-disable-line no-unused-vars */ content = args[1]; } else { content = args[0]; @@ -723,7 +723,7 @@ export class Attributes { throw new Error( `Expected Attributes, Template, or object, ` + - `got ${typeAppearance(attribute)}`); + `got ${typeAppearance(attributes)}`); } #addOneAttribute(attribute, value) { |