├── .eslintrc.yml ├── .gitignore ├── .npmignore ├── .travis.yml ├── CHANGELOG.md ├── Gruntfile.js ├── LICENSE.txt ├── README.md ├── doc ├── api.hbs └── api.md ├── example ├── emojified.js ├── init.js ├── paging-text.js ├── queued-up.js ├── ratelimited.js └── web-socket.js ├── lib ├── client.js └── index.js ├── package.json └── test ├── .eslintrc.yml ├── README.md └── test.index.js /.eslintrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GochoMugo/tgfancy/HEAD/.eslintrc.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | coverage/ 3 | package-lock.json 4 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GochoMugo/tgfancy/HEAD/.npmignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GochoMugo/tgfancy/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GochoMugo/tgfancy/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GochoMugo/tgfancy/HEAD/Gruntfile.js -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GochoMugo/tgfancy/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GochoMugo/tgfancy/HEAD/README.md -------------------------------------------------------------------------------- /doc/api.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GochoMugo/tgfancy/HEAD/doc/api.hbs -------------------------------------------------------------------------------- /doc/api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GochoMugo/tgfancy/HEAD/doc/api.md -------------------------------------------------------------------------------- /example/emojified.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GochoMugo/tgfancy/HEAD/example/emojified.js -------------------------------------------------------------------------------- /example/init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GochoMugo/tgfancy/HEAD/example/init.js -------------------------------------------------------------------------------- /example/paging-text.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GochoMugo/tgfancy/HEAD/example/paging-text.js -------------------------------------------------------------------------------- /example/queued-up.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GochoMugo/tgfancy/HEAD/example/queued-up.js -------------------------------------------------------------------------------- /example/ratelimited.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GochoMugo/tgfancy/HEAD/example/ratelimited.js -------------------------------------------------------------------------------- /example/web-socket.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GochoMugo/tgfancy/HEAD/example/web-socket.js -------------------------------------------------------------------------------- /lib/client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GochoMugo/tgfancy/HEAD/lib/client.js -------------------------------------------------------------------------------- /lib/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GochoMugo/tgfancy/HEAD/lib/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GochoMugo/tgfancy/HEAD/package.json -------------------------------------------------------------------------------- /test/.eslintrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GochoMugo/tgfancy/HEAD/test/.eslintrc.yml -------------------------------------------------------------------------------- /test/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GochoMugo/tgfancy/HEAD/test/README.md -------------------------------------------------------------------------------- /test/test.index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GochoMugo/tgfancy/HEAD/test/test.index.js --------------------------------------------------------------------------------