├── .coveralls.yml ├── .eslintrc.json ├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── example.js ├── index.js ├── lib ├── is-node.js ├── logger.js └── url.js ├── package.json └── tests ├── integration.test.js ├── random-access-http.test.js └── valid-url.test.js /.coveralls.yml: -------------------------------------------------------------------------------- 1 | repo_token: Ol7Ap8LS2ER32hLdx9evIMFgCSChJNueO 2 | -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- 1 | { "extends": ["standard"] } 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/random-access-storage/random-access-http/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/random-access-storage/random-access-http/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/random-access-storage/random-access-http/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/random-access-storage/random-access-http/HEAD/README.md -------------------------------------------------------------------------------- /example.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/random-access-storage/random-access-http/HEAD/example.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/random-access-storage/random-access-http/HEAD/index.js -------------------------------------------------------------------------------- /lib/is-node.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/random-access-storage/random-access-http/HEAD/lib/is-node.js -------------------------------------------------------------------------------- /lib/logger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/random-access-storage/random-access-http/HEAD/lib/logger.js -------------------------------------------------------------------------------- /lib/url.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/random-access-storage/random-access-http/HEAD/lib/url.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/random-access-storage/random-access-http/HEAD/package.json -------------------------------------------------------------------------------- /tests/integration.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/random-access-storage/random-access-http/HEAD/tests/integration.test.js -------------------------------------------------------------------------------- /tests/random-access-http.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/random-access-storage/random-access-http/HEAD/tests/random-access-http.test.js -------------------------------------------------------------------------------- /tests/valid-url.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/random-access-storage/random-access-http/HEAD/tests/valid-url.test.js --------------------------------------------------------------------------------