├── .gitignore ├── .npmignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── package.json ├── scripts ├── buildUMD.ts └── rewriteBuilds.ts ├── src └── index.ts ├── tests ├── README.md └── simple_cases_test.ts ├── tsconfig.esm.json └── tsconfig.json /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | lib/ 3 | esm/ 4 | .DS_STORE 5 | umd/ -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/101arrowz/fzstd/HEAD/.npmignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/101arrowz/fzstd/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/101arrowz/fzstd/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/101arrowz/fzstd/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/101arrowz/fzstd/HEAD/package.json -------------------------------------------------------------------------------- /scripts/buildUMD.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/101arrowz/fzstd/HEAD/scripts/buildUMD.ts -------------------------------------------------------------------------------- /scripts/rewriteBuilds.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/101arrowz/fzstd/HEAD/scripts/rewriteBuilds.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/101arrowz/fzstd/HEAD/src/index.ts -------------------------------------------------------------------------------- /tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/101arrowz/fzstd/HEAD/tests/README.md -------------------------------------------------------------------------------- /tests/simple_cases_test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/101arrowz/fzstd/HEAD/tests/simple_cases_test.ts -------------------------------------------------------------------------------- /tsconfig.esm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/101arrowz/fzstd/HEAD/tsconfig.esm.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/101arrowz/fzstd/HEAD/tsconfig.json --------------------------------------------------------------------------------