Remove characters that appear in the blacklist.
The characters are used in a RegExp and so you will need to escape some chars, e.g. blacklist(input, '\\[\\]').
RegExp
blacklist(input, '\\[\\]')
Generated using TypeDoc
Remove characters that appear in the blacklist.