You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Dec 4, 2017. It is now read-only.
Pipes are simple functions that accept an input value and return a transformed value.
1405
1404
The result of an expression might require some transformation before we’re ready to use it in a binding. For example, we might want to display a number as a currency, force text to uppercase, or filter a list and sort it.
1406
1405
1407
-
Angular [pipes](./pipes.html) are a good choice for small transformations such as those listed above.
1408
-
Pipe operators are easy to apply within template expressions, using the **pipe operator (`|`)**:
1406
+
Angular [pipes](./pipes.html) are a good choice for small transformations such as these.
1407
+
Pipes are simple functions that accept an input value and return a transformed value.
1408
+
They're easy to apply within template expressions, using the **pipe operator (`|`)**:
0 commit comments