├── .c8rc ├── .github └── workflows │ └── node.js.yml ├── .gitignore ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── LICENSE ├── README.md ├── archive ├── archive.js ├── common.js ├── compress.js ├── decompress.js ├── events.js ├── gunzip.js ├── inflate.js ├── rarvm.js ├── unrar.js ├── untar.js ├── unzip.js ├── webworker-wrapper.js └── zip.js ├── codecs └── codecs.js ├── docs ├── bitjs.archive.md ├── bitjs.io.md ├── bitstream-ltm.png ├── bitstream-mtl.png └── unrar.html ├── file └── sniffer.js ├── image ├── parsers │ ├── README.md │ ├── exif.js │ ├── gif.js │ ├── jpeg.js │ ├── parsers.js │ └── png.js └── webp-shim │ ├── webp-shim-module.js │ ├── webp-shim-module.wasm │ └── webp-shim.js ├── index.js ├── io ├── bitbuffer.js ├── bitstream.js ├── bytebuffer.js └── bytestream.js ├── media ├── README.md └── media.js ├── package.json ├── tests ├── archive-compress.spec.js ├── archive-decompress.spec.js ├── archive-testfiles │ ├── archive-rar-default.rar │ ├── archive-rar-smaller.rar │ ├── archive-rar-store.rar │ ├── archive-tar.tar │ ├── archive-zip-faster.zip │ ├── archive-zip-smaller.zip │ ├── archive-zip-store.zip │ ├── sample-1-slowest.txt.gz │ ├── sample-1.txt │ ├── sample-2.csv │ └── sample-3.json ├── codecs.spec.js ├── file-sniffer.spec.js ├── image-parsers-gif.spec.js ├── image-parsers-jpeg.spec.js ├── image-parsers-png.spec.js ├── image-testfiles │ ├── PngSuite.png │ ├── bggn4a16.png │ ├── ccwn2c08.png │ ├── cdun2c08.png │ ├── ch1n3p04.png │ ├── cm9n0g04.png │ ├── comment.gif │ ├── cs3n2c16.png │ ├── ctjn0g04.png │ ├── ctzn0g04.png │ ├── exif2c08.png │ ├── g05n3p04.png │ ├── long_description.jpg │ ├── ps1n0g08.png │ ├── tbbn3p08.png │ ├── tbgn2c16.png │ ├── tbrn2c08.png │ ├── xmp.gif │ └── xs1n0g01.png ├── io-bitbuffer.spec.js ├── io-bitstream.spec.js ├── io-bytebuffer.spec.js └── io-bytestream.spec.js ├── tsconfig.json └── types ├── archive ├── archive.d.ts ├── archive.d.ts.map ├── common.d.ts ├── common.d.ts.map ├── decompress.d.ts ├── decompress.d.ts.map ├── events.d.ts └── events.d.ts.map ├── codecs ├── codecs.d.ts └── codecs.d.ts.map ├── file ├── sniffer.d.ts └── sniffer.d.ts.map ├── image ├── parsers │ ├── exif.d.ts │ ├── exif.d.ts.map │ ├── gif.d.ts │ ├── gif.d.ts.map │ ├── jpeg.d.ts │ ├── jpeg.d.ts.map │ ├── parsers.d.ts │ ├── parsers.d.ts.map │ ├── png.d.ts │ └── png.d.ts.map └── webp-shim │ ├── webp-shim.d.ts │ └── webp-shim.d.ts.map ├── index.d.ts ├── index.d.ts.map └── io ├── bitbuffer.d.ts ├── bitbuffer.d.ts.map ├── bitstream.d.ts ├── bitstream.d.ts.map ├── bytebuffer.d.ts ├── bytebuffer.d.ts.map ├── bytestream.d.ts └── bytestream.d.ts.map /.c8rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedread/bitjs/HEAD/.c8rc -------------------------------------------------------------------------------- /.github/workflows/node.js.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedread/bitjs/HEAD/.github/workflows/node.js.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | coverage 3 | node_modules 4 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedread/bitjs/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedread/bitjs/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedread/bitjs/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedread/bitjs/HEAD/README.md -------------------------------------------------------------------------------- /archive/archive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedread/bitjs/HEAD/archive/archive.js -------------------------------------------------------------------------------- /archive/common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedread/bitjs/HEAD/archive/common.js -------------------------------------------------------------------------------- /archive/compress.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedread/bitjs/HEAD/archive/compress.js -------------------------------------------------------------------------------- /archive/decompress.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedread/bitjs/HEAD/archive/decompress.js -------------------------------------------------------------------------------- /archive/events.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedread/bitjs/HEAD/archive/events.js -------------------------------------------------------------------------------- /archive/gunzip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedread/bitjs/HEAD/archive/gunzip.js -------------------------------------------------------------------------------- /archive/inflate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedread/bitjs/HEAD/archive/inflate.js -------------------------------------------------------------------------------- /archive/rarvm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedread/bitjs/HEAD/archive/rarvm.js -------------------------------------------------------------------------------- /archive/unrar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedread/bitjs/HEAD/archive/unrar.js -------------------------------------------------------------------------------- /archive/untar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedread/bitjs/HEAD/archive/untar.js -------------------------------------------------------------------------------- /archive/unzip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedread/bitjs/HEAD/archive/unzip.js -------------------------------------------------------------------------------- /archive/webworker-wrapper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedread/bitjs/HEAD/archive/webworker-wrapper.js -------------------------------------------------------------------------------- /archive/zip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedread/bitjs/HEAD/archive/zip.js -------------------------------------------------------------------------------- /codecs/codecs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedread/bitjs/HEAD/codecs/codecs.js -------------------------------------------------------------------------------- /docs/bitjs.archive.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedread/bitjs/HEAD/docs/bitjs.archive.md -------------------------------------------------------------------------------- /docs/bitjs.io.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedread/bitjs/HEAD/docs/bitjs.io.md -------------------------------------------------------------------------------- /docs/bitstream-ltm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedread/bitjs/HEAD/docs/bitstream-ltm.png -------------------------------------------------------------------------------- /docs/bitstream-mtl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedread/bitjs/HEAD/docs/bitstream-mtl.png -------------------------------------------------------------------------------- /docs/unrar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedread/bitjs/HEAD/docs/unrar.html -------------------------------------------------------------------------------- /file/sniffer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedread/bitjs/HEAD/file/sniffer.js -------------------------------------------------------------------------------- /image/parsers/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedread/bitjs/HEAD/image/parsers/README.md -------------------------------------------------------------------------------- /image/parsers/exif.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedread/bitjs/HEAD/image/parsers/exif.js -------------------------------------------------------------------------------- /image/parsers/gif.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedread/bitjs/HEAD/image/parsers/gif.js -------------------------------------------------------------------------------- /image/parsers/jpeg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedread/bitjs/HEAD/image/parsers/jpeg.js -------------------------------------------------------------------------------- /image/parsers/parsers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedread/bitjs/HEAD/image/parsers/parsers.js -------------------------------------------------------------------------------- /image/parsers/png.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedread/bitjs/HEAD/image/parsers/png.js -------------------------------------------------------------------------------- /image/webp-shim/webp-shim-module.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedread/bitjs/HEAD/image/webp-shim/webp-shim-module.js -------------------------------------------------------------------------------- /image/webp-shim/webp-shim-module.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedread/bitjs/HEAD/image/webp-shim/webp-shim-module.wasm -------------------------------------------------------------------------------- /image/webp-shim/webp-shim.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedread/bitjs/HEAD/image/webp-shim/webp-shim.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedread/bitjs/HEAD/index.js -------------------------------------------------------------------------------- /io/bitbuffer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedread/bitjs/HEAD/io/bitbuffer.js -------------------------------------------------------------------------------- /io/bitstream.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedread/bitjs/HEAD/io/bitstream.js -------------------------------------------------------------------------------- /io/bytebuffer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedread/bitjs/HEAD/io/bytebuffer.js -------------------------------------------------------------------------------- /io/bytestream.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedread/bitjs/HEAD/io/bytestream.js -------------------------------------------------------------------------------- /media/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedread/bitjs/HEAD/media/README.md -------------------------------------------------------------------------------- /media/media.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedread/bitjs/HEAD/media/media.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedread/bitjs/HEAD/package.json -------------------------------------------------------------------------------- /tests/archive-compress.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedread/bitjs/HEAD/tests/archive-compress.spec.js -------------------------------------------------------------------------------- /tests/archive-decompress.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedread/bitjs/HEAD/tests/archive-decompress.spec.js -------------------------------------------------------------------------------- /tests/archive-testfiles/archive-rar-default.rar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedread/bitjs/HEAD/tests/archive-testfiles/archive-rar-default.rar -------------------------------------------------------------------------------- /tests/archive-testfiles/archive-rar-smaller.rar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedread/bitjs/HEAD/tests/archive-testfiles/archive-rar-smaller.rar -------------------------------------------------------------------------------- /tests/archive-testfiles/archive-rar-store.rar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedread/bitjs/HEAD/tests/archive-testfiles/archive-rar-store.rar -------------------------------------------------------------------------------- /tests/archive-testfiles/archive-tar.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedread/bitjs/HEAD/tests/archive-testfiles/archive-tar.tar -------------------------------------------------------------------------------- /tests/archive-testfiles/archive-zip-faster.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedread/bitjs/HEAD/tests/archive-testfiles/archive-zip-faster.zip -------------------------------------------------------------------------------- /tests/archive-testfiles/archive-zip-smaller.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedread/bitjs/HEAD/tests/archive-testfiles/archive-zip-smaller.zip -------------------------------------------------------------------------------- /tests/archive-testfiles/archive-zip-store.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedread/bitjs/HEAD/tests/archive-testfiles/archive-zip-store.zip -------------------------------------------------------------------------------- /tests/archive-testfiles/sample-1-slowest.txt.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedread/bitjs/HEAD/tests/archive-testfiles/sample-1-slowest.txt.gz -------------------------------------------------------------------------------- /tests/archive-testfiles/sample-1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedread/bitjs/HEAD/tests/archive-testfiles/sample-1.txt -------------------------------------------------------------------------------- /tests/archive-testfiles/sample-2.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedread/bitjs/HEAD/tests/archive-testfiles/sample-2.csv -------------------------------------------------------------------------------- /tests/archive-testfiles/sample-3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedread/bitjs/HEAD/tests/archive-testfiles/sample-3.json -------------------------------------------------------------------------------- /tests/codecs.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedread/bitjs/HEAD/tests/codecs.spec.js -------------------------------------------------------------------------------- /tests/file-sniffer.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedread/bitjs/HEAD/tests/file-sniffer.spec.js -------------------------------------------------------------------------------- /tests/image-parsers-gif.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedread/bitjs/HEAD/tests/image-parsers-gif.spec.js -------------------------------------------------------------------------------- /tests/image-parsers-jpeg.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedread/bitjs/HEAD/tests/image-parsers-jpeg.spec.js -------------------------------------------------------------------------------- /tests/image-parsers-png.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedread/bitjs/HEAD/tests/image-parsers-png.spec.js -------------------------------------------------------------------------------- /tests/image-testfiles/PngSuite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedread/bitjs/HEAD/tests/image-testfiles/PngSuite.png -------------------------------------------------------------------------------- /tests/image-testfiles/bggn4a16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedread/bitjs/HEAD/tests/image-testfiles/bggn4a16.png -------------------------------------------------------------------------------- /tests/image-testfiles/ccwn2c08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedread/bitjs/HEAD/tests/image-testfiles/ccwn2c08.png -------------------------------------------------------------------------------- /tests/image-testfiles/cdun2c08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedread/bitjs/HEAD/tests/image-testfiles/cdun2c08.png -------------------------------------------------------------------------------- /tests/image-testfiles/ch1n3p04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedread/bitjs/HEAD/tests/image-testfiles/ch1n3p04.png -------------------------------------------------------------------------------- /tests/image-testfiles/cm9n0g04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedread/bitjs/HEAD/tests/image-testfiles/cm9n0g04.png -------------------------------------------------------------------------------- /tests/image-testfiles/comment.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedread/bitjs/HEAD/tests/image-testfiles/comment.gif -------------------------------------------------------------------------------- /tests/image-testfiles/cs3n2c16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedread/bitjs/HEAD/tests/image-testfiles/cs3n2c16.png -------------------------------------------------------------------------------- /tests/image-testfiles/ctjn0g04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedread/bitjs/HEAD/tests/image-testfiles/ctjn0g04.png -------------------------------------------------------------------------------- /tests/image-testfiles/ctzn0g04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedread/bitjs/HEAD/tests/image-testfiles/ctzn0g04.png -------------------------------------------------------------------------------- /tests/image-testfiles/exif2c08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedread/bitjs/HEAD/tests/image-testfiles/exif2c08.png -------------------------------------------------------------------------------- /tests/image-testfiles/g05n3p04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedread/bitjs/HEAD/tests/image-testfiles/g05n3p04.png -------------------------------------------------------------------------------- /tests/image-testfiles/long_description.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedread/bitjs/HEAD/tests/image-testfiles/long_description.jpg -------------------------------------------------------------------------------- /tests/image-testfiles/ps1n0g08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedread/bitjs/HEAD/tests/image-testfiles/ps1n0g08.png -------------------------------------------------------------------------------- /tests/image-testfiles/tbbn3p08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedread/bitjs/HEAD/tests/image-testfiles/tbbn3p08.png -------------------------------------------------------------------------------- /tests/image-testfiles/tbgn2c16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedread/bitjs/HEAD/tests/image-testfiles/tbgn2c16.png -------------------------------------------------------------------------------- /tests/image-testfiles/tbrn2c08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedread/bitjs/HEAD/tests/image-testfiles/tbrn2c08.png -------------------------------------------------------------------------------- /tests/image-testfiles/xmp.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedread/bitjs/HEAD/tests/image-testfiles/xmp.gif -------------------------------------------------------------------------------- /tests/image-testfiles/xs1n0g01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedread/bitjs/HEAD/tests/image-testfiles/xs1n0g01.png -------------------------------------------------------------------------------- /tests/io-bitbuffer.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedread/bitjs/HEAD/tests/io-bitbuffer.spec.js -------------------------------------------------------------------------------- /tests/io-bitstream.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedread/bitjs/HEAD/tests/io-bitstream.spec.js -------------------------------------------------------------------------------- /tests/io-bytebuffer.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedread/bitjs/HEAD/tests/io-bytebuffer.spec.js -------------------------------------------------------------------------------- /tests/io-bytestream.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedread/bitjs/HEAD/tests/io-bytestream.spec.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedread/bitjs/HEAD/tsconfig.json -------------------------------------------------------------------------------- /types/archive/archive.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedread/bitjs/HEAD/types/archive/archive.d.ts -------------------------------------------------------------------------------- /types/archive/archive.d.ts.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedread/bitjs/HEAD/types/archive/archive.d.ts.map -------------------------------------------------------------------------------- /types/archive/common.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedread/bitjs/HEAD/types/archive/common.d.ts -------------------------------------------------------------------------------- /types/archive/common.d.ts.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedread/bitjs/HEAD/types/archive/common.d.ts.map -------------------------------------------------------------------------------- /types/archive/decompress.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedread/bitjs/HEAD/types/archive/decompress.d.ts -------------------------------------------------------------------------------- /types/archive/decompress.d.ts.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedread/bitjs/HEAD/types/archive/decompress.d.ts.map -------------------------------------------------------------------------------- /types/archive/events.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedread/bitjs/HEAD/types/archive/events.d.ts -------------------------------------------------------------------------------- /types/archive/events.d.ts.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedread/bitjs/HEAD/types/archive/events.d.ts.map -------------------------------------------------------------------------------- /types/codecs/codecs.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedread/bitjs/HEAD/types/codecs/codecs.d.ts -------------------------------------------------------------------------------- /types/codecs/codecs.d.ts.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedread/bitjs/HEAD/types/codecs/codecs.d.ts.map -------------------------------------------------------------------------------- /types/file/sniffer.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedread/bitjs/HEAD/types/file/sniffer.d.ts -------------------------------------------------------------------------------- /types/file/sniffer.d.ts.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedread/bitjs/HEAD/types/file/sniffer.d.ts.map -------------------------------------------------------------------------------- /types/image/parsers/exif.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedread/bitjs/HEAD/types/image/parsers/exif.d.ts -------------------------------------------------------------------------------- /types/image/parsers/exif.d.ts.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedread/bitjs/HEAD/types/image/parsers/exif.d.ts.map -------------------------------------------------------------------------------- /types/image/parsers/gif.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedread/bitjs/HEAD/types/image/parsers/gif.d.ts -------------------------------------------------------------------------------- /types/image/parsers/gif.d.ts.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedread/bitjs/HEAD/types/image/parsers/gif.d.ts.map -------------------------------------------------------------------------------- /types/image/parsers/jpeg.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedread/bitjs/HEAD/types/image/parsers/jpeg.d.ts -------------------------------------------------------------------------------- /types/image/parsers/jpeg.d.ts.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedread/bitjs/HEAD/types/image/parsers/jpeg.d.ts.map -------------------------------------------------------------------------------- /types/image/parsers/parsers.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedread/bitjs/HEAD/types/image/parsers/parsers.d.ts -------------------------------------------------------------------------------- /types/image/parsers/parsers.d.ts.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedread/bitjs/HEAD/types/image/parsers/parsers.d.ts.map -------------------------------------------------------------------------------- /types/image/parsers/png.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedread/bitjs/HEAD/types/image/parsers/png.d.ts -------------------------------------------------------------------------------- /types/image/parsers/png.d.ts.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedread/bitjs/HEAD/types/image/parsers/png.d.ts.map -------------------------------------------------------------------------------- /types/image/webp-shim/webp-shim.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedread/bitjs/HEAD/types/image/webp-shim/webp-shim.d.ts -------------------------------------------------------------------------------- /types/image/webp-shim/webp-shim.d.ts.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedread/bitjs/HEAD/types/image/webp-shim/webp-shim.d.ts.map -------------------------------------------------------------------------------- /types/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedread/bitjs/HEAD/types/index.d.ts -------------------------------------------------------------------------------- /types/index.d.ts.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedread/bitjs/HEAD/types/index.d.ts.map -------------------------------------------------------------------------------- /types/io/bitbuffer.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedread/bitjs/HEAD/types/io/bitbuffer.d.ts -------------------------------------------------------------------------------- /types/io/bitbuffer.d.ts.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedread/bitjs/HEAD/types/io/bitbuffer.d.ts.map -------------------------------------------------------------------------------- /types/io/bitstream.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedread/bitjs/HEAD/types/io/bitstream.d.ts -------------------------------------------------------------------------------- /types/io/bitstream.d.ts.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedread/bitjs/HEAD/types/io/bitstream.d.ts.map -------------------------------------------------------------------------------- /types/io/bytebuffer.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedread/bitjs/HEAD/types/io/bytebuffer.d.ts -------------------------------------------------------------------------------- /types/io/bytebuffer.d.ts.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedread/bitjs/HEAD/types/io/bytebuffer.d.ts.map -------------------------------------------------------------------------------- /types/io/bytestream.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedread/bitjs/HEAD/types/io/bytestream.d.ts -------------------------------------------------------------------------------- /types/io/bytestream.d.ts.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedread/bitjs/HEAD/types/io/bytestream.d.ts.map --------------------------------------------------------------------------------