aboutsummaryrefslogtreecommitdiffstats
path: root/src/core
diff options
context:
space:
mode:
authorMichał Gołębiowski-Owczarek <m.goleb@gmail.com>2020-05-18 22:25:49 +0200
committerGitHub <noreply@github.com>2020-05-18 22:25:49 +0200
commitef4d6ca6c3a1b276fedc27b1f3a18823276f01a3 (patch)
tree6c82db4feb714fce8672a9b2354bfa1624de73fc /src/core
parentd96111e18b42ae1bc7def72a8a0d156ea39e4d0e (diff)
downloadjquery-ef4d6ca6c3a1b276fedc27b1f3a18823276f01a3.tar.gz
jquery-ef4d6ca6c3a1b276fedc27b1f3a18823276f01a3.zip
Build: Update eslint-config-jquery, fix linting violations
Closes gh-4696 Ref jquery/eslint-config-jquery#15 Ref jquery/eslint-config-jquery#16
Diffstat (limited to 'src/core')
-rw-r--r--src/core/nodeName.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/nodeName.js b/src/core/nodeName.js
index 7d38916b7..ac90c6075 100644
--- a/src/core/nodeName.js
+++ b/src/core/nodeName.js
@@ -2,6 +2,6 @@ function nodeName( elem, name ) {
return elem.nodeName && elem.nodeName.toLowerCase() === name.toLowerCase();
-};
+}
export default nodeName;