I have a custom pipe named CurrConvertPipe
CurrConvertPipe
import {Pipe, PipeTransform} from \'@angular/core\'; import {LocalStorageService} f
If you generate a pipe using CLI for a shared module you will need to add the pipe to the 'exports' list manually. My pipe error'd in the browser until I added the pipe as an export in my shared module I imported/declared it in.