├── .gitignore ├── .prettierrc.js ├── .travis.yml ├── LICENSE ├── README.md ├── lib └── encoding.js ├── package.json └── test └── test.js /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules -------------------------------------------------------------------------------- /.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andris9/encoding/HEAD/.prettierrc.js -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andris9/encoding/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andris9/encoding/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andris9/encoding/HEAD/README.md -------------------------------------------------------------------------------- /lib/encoding.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andris9/encoding/HEAD/lib/encoding.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andris9/encoding/HEAD/package.json -------------------------------------------------------------------------------- /test/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andris9/encoding/HEAD/test/test.js --------------------------------------------------------------------------------