├── .gitignore ├── LICENSE ├── README.md ├── __tests__ └── pipe-function.pipe.spec.ts ├── ng-package.json ├── package.json ├── src ├── lib │ ├── pipe-function.module.ts │ └── pipe-function.pipe.ts ├── public_api.ts └── setupJest.ts ├── tsconfig.json ├── tsconfig.lib.json ├── tsconfig.spec.json └── tslint.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtemLanovyy/ngx-pipe-function/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtemLanovyy/ngx-pipe-function/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtemLanovyy/ngx-pipe-function/HEAD/README.md -------------------------------------------------------------------------------- /__tests__/pipe-function.pipe.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtemLanovyy/ngx-pipe-function/HEAD/__tests__/pipe-function.pipe.spec.ts -------------------------------------------------------------------------------- /ng-package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtemLanovyy/ngx-pipe-function/HEAD/ng-package.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtemLanovyy/ngx-pipe-function/HEAD/package.json -------------------------------------------------------------------------------- /src/lib/pipe-function.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtemLanovyy/ngx-pipe-function/HEAD/src/lib/pipe-function.module.ts -------------------------------------------------------------------------------- /src/lib/pipe-function.pipe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtemLanovyy/ngx-pipe-function/HEAD/src/lib/pipe-function.pipe.ts -------------------------------------------------------------------------------- /src/public_api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtemLanovyy/ngx-pipe-function/HEAD/src/public_api.ts -------------------------------------------------------------------------------- /src/setupJest.ts: -------------------------------------------------------------------------------- 1 | import 'jest-preset-angular'; 2 | -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtemLanovyy/ngx-pipe-function/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtemLanovyy/ngx-pipe-function/HEAD/tsconfig.lib.json -------------------------------------------------------------------------------- /tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtemLanovyy/ngx-pipe-function/HEAD/tsconfig.spec.json -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtemLanovyy/ngx-pipe-function/HEAD/tslint.json --------------------------------------------------------------------------------