├── .gitignore ├── LICENSE ├── README.md ├── dist ├── README.md ├── utfx-embeddable.js ├── utfx.js └── utfx.min.js ├── index.js ├── package.json ├── src ├── README.md ├── header.txt ├── utfx.js ├── wrap_embeddable.js └── wrap_standalone.js ├── tests ├── bench.js └── suite.js └── utfx.png /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | npm-debug.log 3 | .idea/ 4 | raw/ 5 | doco/ 6 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcodeIO/utfx/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcodeIO/utfx/HEAD/README.md -------------------------------------------------------------------------------- /dist/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcodeIO/utfx/HEAD/dist/README.md -------------------------------------------------------------------------------- /dist/utfx-embeddable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcodeIO/utfx/HEAD/dist/utfx-embeddable.js -------------------------------------------------------------------------------- /dist/utfx.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcodeIO/utfx/HEAD/dist/utfx.js -------------------------------------------------------------------------------- /dist/utfx.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcodeIO/utfx/HEAD/dist/utfx.min.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcodeIO/utfx/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcodeIO/utfx/HEAD/package.json -------------------------------------------------------------------------------- /src/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcodeIO/utfx/HEAD/src/README.md -------------------------------------------------------------------------------- /src/header.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcodeIO/utfx/HEAD/src/header.txt -------------------------------------------------------------------------------- /src/utfx.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcodeIO/utfx/HEAD/src/utfx.js -------------------------------------------------------------------------------- /src/wrap_embeddable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcodeIO/utfx/HEAD/src/wrap_embeddable.js -------------------------------------------------------------------------------- /src/wrap_standalone.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcodeIO/utfx/HEAD/src/wrap_standalone.js -------------------------------------------------------------------------------- /tests/bench.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcodeIO/utfx/HEAD/tests/bench.js -------------------------------------------------------------------------------- /tests/suite.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcodeIO/utfx/HEAD/tests/suite.js -------------------------------------------------------------------------------- /utfx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcodeIO/utfx/HEAD/utfx.png --------------------------------------------------------------------------------