We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When using the profane?/2 function with the built in blacklists. It will not catch sub-strings. for example:
profane?/2
iex> config = Expletive.configure(blacklist: Expletive.Blacklist.english) iex> Expletive.profane?("fuck", config) true iex> Expletive.profane?("fuckkkk", config) false
To me it seems like the last one should also return true. I can try to help with this change if it is desired. Thanks!
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Problem
When using the
profane?/2
function with the built in blacklists. It will not catch sub-strings. for example:To me it seems like the last one should also return true. I can try to help with this change if it is desired. Thanks!
The text was updated successfully, but these errors were encountered: