Pipe input - type of stuff that is passed before | and pipe name in Angular template
Pipe params - array of types of stuff that is passed after pipe name in Angular template
Actual pipe logic, extend this method to create locale-based pipe.
Pipe input
Pipe params
Angular Pipe API method that includes memoization. Actual code of the pipe should be implemented in convert method.
Pipe input
Pipe params
Generated using TypeDoc
Parent class for each pipe that works with locale system
So far Angular does not support Observables in pipes so an impure pipe with an memoization optimization is used instead. All pipes that extend from this class must be marked as impure to work correctly. See issue angular/angular#15041 for more info.