├── .editorconfig ├── .gitattributes ├── .gitignore ├── .travis.yml ├── appveyor.yml ├── bundle.js ├── example.html ├── index.js ├── license ├── package.json ├── readme.md ├── swearWords.json ├── test.js ├── web.js └── webpack.conf.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawsbot/fuhk/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawsbot/fuhk/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawsbot/fuhk/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawsbot/fuhk/HEAD/.travis.yml -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawsbot/fuhk/HEAD/appveyor.yml -------------------------------------------------------------------------------- /bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawsbot/fuhk/HEAD/bundle.js -------------------------------------------------------------------------------- /example.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawsbot/fuhk/HEAD/example.html -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawsbot/fuhk/HEAD/index.js -------------------------------------------------------------------------------- /license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawsbot/fuhk/HEAD/license -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawsbot/fuhk/HEAD/package.json -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawsbot/fuhk/HEAD/readme.md -------------------------------------------------------------------------------- /swearWords.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawsbot/fuhk/HEAD/swearWords.json -------------------------------------------------------------------------------- /test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawsbot/fuhk/HEAD/test.js -------------------------------------------------------------------------------- /web.js: -------------------------------------------------------------------------------- 1 | global.fuhk = require('./index'); 2 | -------------------------------------------------------------------------------- /webpack.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawsbot/fuhk/HEAD/webpack.conf.js --------------------------------------------------------------------------------