├── .babelrc ├── .gitignore ├── README.md ├── lib ├── createRouteMatcher.js ├── index.js ├── ui.js └── worker.js ├── package.json └── src ├── createRouteMatcher.js ├── index.js ├── ui.js └── worker.js /.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": ["es2015"] 3 | } -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .DS_Store 3 | npm-debug.log -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenrikJoreteg/featherweight/HEAD/README.md -------------------------------------------------------------------------------- /lib/createRouteMatcher.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenrikJoreteg/featherweight/HEAD/lib/createRouteMatcher.js -------------------------------------------------------------------------------- /lib/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenrikJoreteg/featherweight/HEAD/lib/index.js -------------------------------------------------------------------------------- /lib/ui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenrikJoreteg/featherweight/HEAD/lib/ui.js -------------------------------------------------------------------------------- /lib/worker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenrikJoreteg/featherweight/HEAD/lib/worker.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenrikJoreteg/featherweight/HEAD/package.json -------------------------------------------------------------------------------- /src/createRouteMatcher.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenrikJoreteg/featherweight/HEAD/src/createRouteMatcher.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenrikJoreteg/featherweight/HEAD/src/index.js -------------------------------------------------------------------------------- /src/ui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenrikJoreteg/featherweight/HEAD/src/ui.js -------------------------------------------------------------------------------- /src/worker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenrikJoreteg/featherweight/HEAD/src/worker.js --------------------------------------------------------------------------------