Skip to content

Commit

Permalink
fix: line lint
Browse files Browse the repository at this point in the history
  • Loading branch information
wogha95 committed Aug 18, 2024
1 parent 7c5c3cf commit 6d43c39
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion valid-anagram/wogha95.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,4 @@
*/
var isAnagram = function(s, t) {
return s.split('').sort().join('') === t.split('').sort().join('');
};
};

0 comments on commit 6d43c39

Please sign in to comment.