import { Pipe, PipeTransform } from '@angular/core'; @Pipe({ name: 'tangant' }) export class TangantPipe implements PipeTransform { transform(input: any): number { var convert = (typeof input === 'string') ? Number(input) : input; return Math.tan(convert); } }