fix: revert exercise back

This commit is contained in:
jdegand
2023-11-22 23:59:46 -05:00
parent 043ba3d48e
commit d44805ed6b
3 changed files with 3 additions and 3 deletions

View File

@@ -18,7 +18,7 @@ Pure pipes are a very useful way to transform data from your template. The diffe
## Information: ## Information:
In this third exercise, you want to access utils functions. Currently you cannot access them directly from your template. The goal is to create a specific pipe for this utils file where you will need to pass the name of the function you want to call and the needed arguments. In this third exercice, you want to access utils functions. Currently you cannot access them directly from your template. The goal is to create a specific pipe for this utils file where you will need to pass the name of the function you want to call and the needed arguments.
## Constraints: ## Constraints:

View File

@@ -19,7 +19,7 @@ Pure pipes are a very useful way to transform data from your template. The diffe
## Information: ## Information:
In this first exercise, you call a simple function inside your template. The goal is to convert it to a pipe. In this first exercice, you call a simple function inside your template. The goal is to convert it to a pipe.
## Constraints: ## Constraints:

View File

@@ -21,7 +21,7 @@ Pure pipes are a very useful way to transform data from your template. The diffe
## Information: ## Information:
In this second exercise, you are calling multiple functions inside your template. You can create a specific pipe for each of the functions but this will be too cumbersome. In this second exercice, you are calling multiple functions inside your template. You can create a specific pipe for each of the functions but this will be too cumbersome.
The goal is to create a `wrapFn` pipe to wrap your callback function though a pipe. Your function MUST remain inside your component. `WrapFn` must be highly reusable. The goal is to create a `wrapFn` pipe to wrap your callback function though a pipe. Your function MUST remain inside your component. `WrapFn` must be highly reusable.
## Constraints: ## Constraints: