├── .gitignore ├── .jscsrc ├── .jshintrc ├── .npmignore ├── .travis.yml ├── LICENSE ├── README.md ├── lib ├── profanity.js ├── sub_string_words.json ├── swearwords.json └── util.js ├── package.json └── test ├── profanity.test.js └── util.js /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | **.DS_Store 3 | coverage/ 4 | -------------------------------------------------------------------------------- /.jscsrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KanoComputing/nodejs-profanity-util/HEAD/.jscsrc -------------------------------------------------------------------------------- /.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KanoComputing/nodejs-profanity-util/HEAD/.jshintrc -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | test -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KanoComputing/nodejs-profanity-util/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KanoComputing/nodejs-profanity-util/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KanoComputing/nodejs-profanity-util/HEAD/README.md -------------------------------------------------------------------------------- /lib/profanity.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KanoComputing/nodejs-profanity-util/HEAD/lib/profanity.js -------------------------------------------------------------------------------- /lib/sub_string_words.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KanoComputing/nodejs-profanity-util/HEAD/lib/sub_string_words.json -------------------------------------------------------------------------------- /lib/swearwords.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KanoComputing/nodejs-profanity-util/HEAD/lib/swearwords.json -------------------------------------------------------------------------------- /lib/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KanoComputing/nodejs-profanity-util/HEAD/lib/util.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KanoComputing/nodejs-profanity-util/HEAD/package.json -------------------------------------------------------------------------------- /test/profanity.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KanoComputing/nodejs-profanity-util/HEAD/test/profanity.test.js -------------------------------------------------------------------------------- /test/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KanoComputing/nodejs-profanity-util/HEAD/test/util.js --------------------------------------------------------------------------------