Codacy style changes for test files
This commit is contained in:
@ -2,5 +2,4 @@ const isSimilar = (pattern, str) =>
|
||||
[...str].reduce(
|
||||
(matchIndex, char) => char.toLowerCase() === (pattern[matchIndex] || '').toLowerCase() ? matchIndex + 1 : matchIndex, 0
|
||||
) === pattern.length ? true : false;
|
||||
|
||||
module.exports = isSimilar;
|
||||
module.exports = isSimilar;
|
||||
|
||||
Reference in New Issue
Block a user