├── .editorconfig ├── .gitignore ├── .travis.yml ├── CHANGELOG.md ├── LICENSE ├── Makefile ├── README.md ├── index.js ├── package.json └── test ├── scenarios ├── custom-rule.scenarios.js ├── extension.scenarios.js ├── method-exception.scenarios.js ├── original-url.scenarios.js ├── path-match.scenarios.js └── regular-expression.scenarios.js ├── test-runner.js └── test.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Foxandxss/koa-unless/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | playground 3 | *.iml 4 | .idea/ -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Foxandxss/koa-unless/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # Changelog 2 | 3 | ## Version 0.0.1 4 | 5 | - Initial Release -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Foxandxss/koa-unless/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Foxandxss/koa-unless/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Foxandxss/koa-unless/HEAD/README.md -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Foxandxss/koa-unless/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Foxandxss/koa-unless/HEAD/package.json -------------------------------------------------------------------------------- /test/scenarios/custom-rule.scenarios.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Foxandxss/koa-unless/HEAD/test/scenarios/custom-rule.scenarios.js -------------------------------------------------------------------------------- /test/scenarios/extension.scenarios.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Foxandxss/koa-unless/HEAD/test/scenarios/extension.scenarios.js -------------------------------------------------------------------------------- /test/scenarios/method-exception.scenarios.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Foxandxss/koa-unless/HEAD/test/scenarios/method-exception.scenarios.js -------------------------------------------------------------------------------- /test/scenarios/original-url.scenarios.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Foxandxss/koa-unless/HEAD/test/scenarios/original-url.scenarios.js -------------------------------------------------------------------------------- /test/scenarios/path-match.scenarios.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Foxandxss/koa-unless/HEAD/test/scenarios/path-match.scenarios.js -------------------------------------------------------------------------------- /test/scenarios/regular-expression.scenarios.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Foxandxss/koa-unless/HEAD/test/scenarios/regular-expression.scenarios.js -------------------------------------------------------------------------------- /test/test-runner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Foxandxss/koa-unless/HEAD/test/test-runner.js -------------------------------------------------------------------------------- /test/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Foxandxss/koa-unless/HEAD/test/test.js --------------------------------------------------------------------------------