I would like to call the numberPipe on my custom pipe I find this answer
Angular2 use basic pipe in custom pipe
but I this solution don't work for me. I have an error "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
}
}