├── .eslintrc.js ├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── lib └── fuzzy.ai.js ├── package.json └── test ├── apiserver-mock.js └── module-test.js /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzy-ai/nodejs/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzy-ai/nodejs/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzy-ai/nodejs/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzy-ai/nodejs/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzy-ai/nodejs/HEAD/README.md -------------------------------------------------------------------------------- /lib/fuzzy.ai.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzy-ai/nodejs/HEAD/lib/fuzzy.ai.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzy-ai/nodejs/HEAD/package.json -------------------------------------------------------------------------------- /test/apiserver-mock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzy-ai/nodejs/HEAD/test/apiserver-mock.js -------------------------------------------------------------------------------- /test/module-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzy-ai/nodejs/HEAD/test/module-test.js --------------------------------------------------------------------------------