File

src/app/models/params/typeof.pipe.ts

import { Pipe, PipeTransform } from '@angular/core';
    @Pipe({
    name: 'typeof',
    standalone: false
})
    export class TypeofPipe implements PipeTransform {

      transform(value: any): any {
        console.log("Pipe works ",typeof value);
        return typeof value;
      }

}

results matching ""

    No results matching ""