├── .github ├── labels.yml ├── release-drafter.yml └── workflows │ ├── labels.yml │ ├── nodejs.yml │ ├── npmpublish.yml │ └── release-drafter.yml ├── .gitignore ├── .prettierignore ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── lib ├── crc32-stream.js ├── deflate-crc32-stream.js └── index.js ├── package.json ├── renovate.json └── test ├── checksum.js ├── deflate.js └── helpers └── index.js /.github/labels.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archiverjs/node-crc32-stream/HEAD/.github/labels.yml -------------------------------------------------------------------------------- /.github/release-drafter.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archiverjs/node-crc32-stream/HEAD/.github/release-drafter.yml -------------------------------------------------------------------------------- /.github/workflows/labels.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archiverjs/node-crc32-stream/HEAD/.github/workflows/labels.yml -------------------------------------------------------------------------------- /.github/workflows/nodejs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archiverjs/node-crc32-stream/HEAD/.github/workflows/nodejs.yml -------------------------------------------------------------------------------- /.github/workflows/npmpublish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archiverjs/node-crc32-stream/HEAD/.github/workflows/npmpublish.yml -------------------------------------------------------------------------------- /.github/workflows/release-drafter.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archiverjs/node-crc32-stream/HEAD/.github/workflows/release-drafter.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | npm-debug.log 2 | node_modules/ 3 | tmp/ -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | # Ignore artifacts: 2 | build 3 | coverage 4 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archiverjs/node-crc32-stream/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archiverjs/node-crc32-stream/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archiverjs/node-crc32-stream/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archiverjs/node-crc32-stream/HEAD/README.md -------------------------------------------------------------------------------- /lib/crc32-stream.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archiverjs/node-crc32-stream/HEAD/lib/crc32-stream.js -------------------------------------------------------------------------------- /lib/deflate-crc32-stream.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archiverjs/node-crc32-stream/HEAD/lib/deflate-crc32-stream.js -------------------------------------------------------------------------------- /lib/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archiverjs/node-crc32-stream/HEAD/lib/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archiverjs/node-crc32-stream/HEAD/package.json -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archiverjs/node-crc32-stream/HEAD/renovate.json -------------------------------------------------------------------------------- /test/checksum.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archiverjs/node-crc32-stream/HEAD/test/checksum.js -------------------------------------------------------------------------------- /test/deflate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archiverjs/node-crc32-stream/HEAD/test/deflate.js -------------------------------------------------------------------------------- /test/helpers/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archiverjs/node-crc32-stream/HEAD/test/helpers/index.js --------------------------------------------------------------------------------