From e5a3c306c50b7f9cd3531dc67b6f4c2659e6050b Mon Sep 17 00:00:00 2001 From: Manthan Ankolekar Date: Thu, 27 Apr 2023 23:51:38 +0530 Subject: [PATCH] feat: updated --- README.md | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/README.md b/README.md index db14c30..f70e604 100644 --- a/README.md +++ b/README.md @@ -24,6 +24,8 @@ - [Percent Pipe](#percent-pipe) - [Slice Pipe](#slice-pipe) - [Decimal/number Pipe](#decimalnumber-pipe) + - [JSON Pipe](#json-pipe) + - [Async Pipe](#async-pipe) - [Decorators](#decorators) - [Input](#input) - [Output](#output) @@ -861,6 +863,18 @@ export class AppModule {}

{{ 123456.78 | number:'3.2-3' }}

``` +### JSON Pipe + +```html +

{{data | json}}

+``` + +### Async Pipe + +```html +

{{data | async}}

+``` + [Back to top⤴️](#contents) ## Decorators