Michael Johnson
Results
1
comments of
Michael Johnson
For those interested, I'm using this as a workaround for now. ```javascript // filename bad-words-hacked.js const Filter = require('bad-words') class FilterHacked extends Filter { cleanHacked(string) { try { return this.clean(string);...