├── .github └── workflows │ └── ci.yml ├── .npmignore ├── LICENSE ├── README.md ├── index.js ├── package.json ├── read.js ├── test └── basic.js └── write.js /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feross/chunk-store-stream/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | .github/ 2 | test/ 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feross/chunk-store-stream/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feross/chunk-store-stream/HEAD/README.md -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feross/chunk-store-stream/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feross/chunk-store-stream/HEAD/package.json -------------------------------------------------------------------------------- /read.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feross/chunk-store-stream/HEAD/read.js -------------------------------------------------------------------------------- /test/basic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feross/chunk-store-stream/HEAD/test/basic.js -------------------------------------------------------------------------------- /write.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feross/chunk-store-stream/HEAD/write.js --------------------------------------------------------------------------------