Add missing semicolon

This commit is contained in:
Rohit Tanwar
2018-02-18 11:23:43 +05:30
committed by GitHub
parent b0df93090f
commit 344014f077

View File

@ -15,5 +15,5 @@ if (patternChar === strChar)
}
return patternLength !== 0 && strLength !== 0 && patternIdx === patternLength ? true : false;
}
module.exports = fuzzySearch;
};
module.exports = fuzzySearch;