ngx-local-pipe
v2.3.0
Published
Simple local pipe for angular
Downloads
214
Readme
Simple local pipe, fully typed, see: https://github.com/angular/angular/issues/25976
How to use
- install by running
npm i ngx-local-pipe
- add
NgxLocalPipeModule
to your module imports
Example
component template
componentMethod | ngxLocalPipe : firstArgument : secondArgument : thirdArgument ...etc
component class
public componentMethod(firstArgument, secondArgument, thirdArgument, ...) {
...
}
componentMethod should be a pure function, do not use this
inside