Pipe
Last updated
Was this helpful?
Last updated
Was this helpful?
Pipes are simple functions that accept an input value and return a transformed value. They're easy to apply within template expressions, using the pipe operator (|
)
You can chain expressions through multiple pipes.
You can also to a pipe
Date
A class with the @Pipe
decorator defines a function that transforms input values to output values for display in a view.
[R]