Custom Pipe
Learn how to create custom pipes in NestJS.
We'll cover the following...
Custom pipe
What if we want to create a custom pipe? Suppose we want to create a pipe to ensure that the language provided in the book is either en
(English) or fr
(French).
Setup
To create ...