Built-in Pipes
https://angular.dev/guide/templates/pipes#built-in-pipes
Angular includes a set of built-in pipes in the @angular/common package:
| Name | Description |
|---|---|
| AsyncPipe | Read the value from a Promiseor an RxJS Observable. |
| CurrencyPipe | Transforms a number to a currency string, formatted according to locale rules. |
| DatePipe | Formats a Date value according to locale rules. |
| DecimalPipe | Transforms a number into a string with a decimal point, formatted according to locale rules. |
| I18nPluralPipe | Maps a value to a string that pluralizes the value according to locale rules. |
| I18nSelectPipe | Maps a key to a custom selector that returns a desired value. |
| JsonPipe | Transforms an object to a string representation via JSON.stringify, intended for debugging. |
| KeyValuePipe | Transforms Object or Map into an array of key value pairs. |
| LowerCasePipe | Transforms text to all lower case. |
| PercentPipe | Transforms a number to a percentage string, formatted according to locale rules. |
| SlicePipe | Creates a new Array or String containing a subset (slice) of the elements. |
| TitleCasePipe | Transforms text to title case. |
| UpperCasePipe | Transforms text to all upper case. |