From d30b6f1c155012b292454664be121da2489cfa51 Mon Sep 17 00:00:00 2001 From: "J. Degand" <70610011+jdegand@users.noreply.github.com> Date: Mon, 12 Aug 2024 04:26:20 -0400 Subject: [PATCH] docs(angular): add common pipes content (#6497) --- .../common-pipes@i2taHzQ5KLHjkkpbH4Ytd.md | 18 +++++++++++++++++- 1 file changed, 17 insertions(+), 1 deletion(-) diff --git a/src/data/roadmaps/angular/content/common-pipes@i2taHzQ5KLHjkkpbH4Ytd.md b/src/data/roadmaps/angular/content/common-pipes@i2taHzQ5KLHjkkpbH4Ytd.md index 57e72e305..d566f5109 100644 --- a/src/data/roadmaps/angular/content/common-pipes@i2taHzQ5KLHjkkpbH4Ytd.md +++ b/src/data/roadmaps/angular/content/common-pipes@i2taHzQ5KLHjkkpbH4Ytd.md @@ -1 +1,17 @@ -# Common Pipes \ No newline at end of file +# Common Pipes + +Angular provides built-in pipes for typical data transformations, including transformations for internationalization (i18n), which use locale information to format data. The following are commonly used built-in pipes for data formatting: + +- DatePipe: Formats a date value according to locale rules. +- UpperCasePipe: Transforms text to all upper case. +- LowerCasePipe: Transforms text to all lower case. +- CurrencyPipe: Transforms a number to a currency string, formatted according to locale rules. +- DecimalPipe: Transforms a number into a string with a decimal point, formatted according to locale rules. +- PercentPipe: Transforms a number to a percentage string, formatted according to locale rules. +- AsyncPipe: Subscribe and unsubscribe to an asynchronous source such as an observable. +- JsonPipe: Display a component object property to the screen as JSON for debugging. + +Visit the following resources to learn more: + +- [@official@Angular Official Docs - Pipes](https://angular.dev/guide/pipes) +- [@article@Pipes in Angular](https://medium.com/@aqeelabbas3972/pipes-in-angular-6a871589299d) \ No newline at end of file