Can someone help me figure out how to call the numberPipe on my custom pipe? I came across this solution:
Angular2 use basic pipe in custom pipe
Unfortunately, the solution provided doesn't seem to work for me. I keep getting an error message saying "The pipe 'bigInteger' could not be found."
import { Pipe, PipeTransform } from "@angular/core"
import { CurrencyPipe } from "@angular/common"
@Pipe({
name: "bigInteger"
})
export class BigInteger extends CurrencyPipe implements PipeTransform {
transform(value: any): string {
return value
}
}