├── .editorconfig ├── .gitignore ├── .nvmrc ├── LICENSE ├── README.md ├── package.json ├── src ├── delay.js └── index.js └── test ├── helpers ├── createHttpServer.js ├── createHttpsServer.js └── createTests.js └── src ├── HttpTerminator.js ├── http.js └── https.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flash-oss/lil-http-terminator/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flash-oss/lil-http-terminator/HEAD/.gitignore -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | 12 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flash-oss/lil-http-terminator/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flash-oss/lil-http-terminator/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flash-oss/lil-http-terminator/HEAD/package.json -------------------------------------------------------------------------------- /src/delay.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flash-oss/lil-http-terminator/HEAD/src/delay.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flash-oss/lil-http-terminator/HEAD/src/index.js -------------------------------------------------------------------------------- /test/helpers/createHttpServer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flash-oss/lil-http-terminator/HEAD/test/helpers/createHttpServer.js -------------------------------------------------------------------------------- /test/helpers/createHttpsServer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flash-oss/lil-http-terminator/HEAD/test/helpers/createHttpsServer.js -------------------------------------------------------------------------------- /test/helpers/createTests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flash-oss/lil-http-terminator/HEAD/test/helpers/createTests.js -------------------------------------------------------------------------------- /test/src/HttpTerminator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flash-oss/lil-http-terminator/HEAD/test/src/HttpTerminator.js -------------------------------------------------------------------------------- /test/src/http.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flash-oss/lil-http-terminator/HEAD/test/src/http.js -------------------------------------------------------------------------------- /test/src/https.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flash-oss/lil-http-terminator/HEAD/test/src/https.js --------------------------------------------------------------------------------