├── .gitignore ├── LICENSE ├── README.md ├── package.json ├── src ├── __tests__ │ └── formatMoney.spec.ts ├── formatMoney.ts └── string │ ├── __tests__ │ ├── format.spec.ts │ └── reverse.spec.ts │ ├── format.ts │ ├── match.ts │ └── reverse.ts ├── test-preprocessor.js └── tsconfig.json /.gitignore: -------------------------------------------------------------------------------- 1 | .vscode/ 2 | node_modules/ 3 | target/ 4 | *.log -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateuszsokola/function-composition-typescript/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateuszsokola/function-composition-typescript/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateuszsokola/function-composition-typescript/HEAD/package.json -------------------------------------------------------------------------------- /src/__tests__/formatMoney.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateuszsokola/function-composition-typescript/HEAD/src/__tests__/formatMoney.spec.ts -------------------------------------------------------------------------------- /src/formatMoney.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateuszsokola/function-composition-typescript/HEAD/src/formatMoney.ts -------------------------------------------------------------------------------- /src/string/__tests__/format.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateuszsokola/function-composition-typescript/HEAD/src/string/__tests__/format.spec.ts -------------------------------------------------------------------------------- /src/string/__tests__/reverse.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateuszsokola/function-composition-typescript/HEAD/src/string/__tests__/reverse.spec.ts -------------------------------------------------------------------------------- /src/string/format.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateuszsokola/function-composition-typescript/HEAD/src/string/format.ts -------------------------------------------------------------------------------- /src/string/match.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateuszsokola/function-composition-typescript/HEAD/src/string/match.ts -------------------------------------------------------------------------------- /src/string/reverse.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateuszsokola/function-composition-typescript/HEAD/src/string/reverse.ts -------------------------------------------------------------------------------- /test-preprocessor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateuszsokola/function-composition-typescript/HEAD/test-preprocessor.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateuszsokola/function-composition-typescript/HEAD/tsconfig.json --------------------------------------------------------------------------------