├── .github └── workflows │ └── ci.yml ├── .gitignore ├── CHANGELOG.md ├── LICENSE.md ├── README.md ├── eslint.config.js ├── package.json ├── prettier.config.js ├── src ├── callback.ts ├── index.ts ├── internals.ts ├── models.ts └── stream.ts ├── test ├── buffersAndStreams.test.ts ├── config │ ├── c8-ci.json │ └── c8-local.json ├── files.test.ts ├── fixtures │ └── image.png ├── index.test.ts ├── streams.test.ts └── urls.test.ts ├── tsconfig.json └── tsconfig.test.json /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShogunPanda/fastimage/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | dist/ 2 | types/ 3 | coverage/ -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShogunPanda/fastimage/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShogunPanda/fastimage/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShogunPanda/fastimage/HEAD/README.md -------------------------------------------------------------------------------- /eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShogunPanda/fastimage/HEAD/eslint.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShogunPanda/fastimage/HEAD/package.json -------------------------------------------------------------------------------- /prettier.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShogunPanda/fastimage/HEAD/prettier.config.js -------------------------------------------------------------------------------- /src/callback.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShogunPanda/fastimage/HEAD/src/callback.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShogunPanda/fastimage/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/internals.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShogunPanda/fastimage/HEAD/src/internals.ts -------------------------------------------------------------------------------- /src/models.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShogunPanda/fastimage/HEAD/src/models.ts -------------------------------------------------------------------------------- /src/stream.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShogunPanda/fastimage/HEAD/src/stream.ts -------------------------------------------------------------------------------- /test/buffersAndStreams.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShogunPanda/fastimage/HEAD/test/buffersAndStreams.test.ts -------------------------------------------------------------------------------- /test/config/c8-ci.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShogunPanda/fastimage/HEAD/test/config/c8-ci.json -------------------------------------------------------------------------------- /test/config/c8-local.json: -------------------------------------------------------------------------------- 1 | { 2 | "reporter": ["text", "html"] 3 | } 4 | -------------------------------------------------------------------------------- /test/files.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShogunPanda/fastimage/HEAD/test/files.test.ts -------------------------------------------------------------------------------- /test/fixtures/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShogunPanda/fastimage/HEAD/test/fixtures/image.png -------------------------------------------------------------------------------- /test/index.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShogunPanda/fastimage/HEAD/test/index.test.ts -------------------------------------------------------------------------------- /test/streams.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShogunPanda/fastimage/HEAD/test/streams.test.ts -------------------------------------------------------------------------------- /test/urls.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShogunPanda/fastimage/HEAD/test/urls.test.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShogunPanda/fastimage/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShogunPanda/fastimage/HEAD/tsconfig.test.json --------------------------------------------------------------------------------