├── .gitignore ├── README.md ├── default.nix ├── derivation.nix ├── package.json ├── run ├── shell.nix ├── src ├── index.ts └── string.ts ├── tsconfig.json └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- 1 | .* 2 | !.gitignore 3 | /dist 4 | /node_modules 5 | /result 6 | /ts-refined-v*.tgz -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedahu/ts-refined/HEAD/README.md -------------------------------------------------------------------------------- /default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedahu/ts-refined/HEAD/default.nix -------------------------------------------------------------------------------- /derivation.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedahu/ts-refined/HEAD/derivation.nix -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedahu/ts-refined/HEAD/package.json -------------------------------------------------------------------------------- /run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedahu/ts-refined/HEAD/run -------------------------------------------------------------------------------- /shell.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedahu/ts-refined/HEAD/shell.nix -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedahu/ts-refined/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/string.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedahu/ts-refined/HEAD/src/string.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedahu/ts-refined/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedahu/ts-refined/HEAD/yarn.lock --------------------------------------------------------------------------------