Skip to content

Commit

Permalink
refactor(eslint-plugin): lint fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
UncleClapton committed May 21, 2023
1 parent a00a322 commit 3af4926
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions packages/eslint-plugin/lib/util/equalsIgnoreCase.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,7 @@
* @param {string} str2
* @returns {boolean}
*/
const equalsIgnoreCase = (str1, str2) => {
return str1.toLowerCase() === str2.toLowerCase()
}
const equalsIgnoreCase = (str1, str2) => str1.toLowerCase() === str2.toLowerCase()


module.exports = equalsIgnoreCase

0 comments on commit 3af4926

Please sign in to comment.