├── .editorconfig ├── .gitignore ├── .npmignore ├── .travis.yml ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE.md ├── README.md ├── lib ├── keycodes.js ├── shortway.cjs.js ├── shortway.js └── shortway.umd.js ├── package.json ├── rollup.config.js └── test └── shortway.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gugutz/shortway/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gugutz/shortway/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gugutz/shortway/HEAD/.npmignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gugutz/shortway/HEAD/.travis.yml -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gugutz/shortway/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gugutz/shortway/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gugutz/shortway/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gugutz/shortway/HEAD/README.md -------------------------------------------------------------------------------- /lib/keycodes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gugutz/shortway/HEAD/lib/keycodes.js -------------------------------------------------------------------------------- /lib/shortway.cjs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gugutz/shortway/HEAD/lib/shortway.cjs.js -------------------------------------------------------------------------------- /lib/shortway.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gugutz/shortway/HEAD/lib/shortway.js -------------------------------------------------------------------------------- /lib/shortway.umd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gugutz/shortway/HEAD/lib/shortway.umd.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gugutz/shortway/HEAD/package.json -------------------------------------------------------------------------------- /rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gugutz/shortway/HEAD/rollup.config.js -------------------------------------------------------------------------------- /test/shortway.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gugutz/shortway/HEAD/test/shortway.js --------------------------------------------------------------------------------