UNPKG

ng2-pipes

Version:
11 lines (8 loc) 243 B
import {PipeTransform, Pipe, Injectable} from '@angular/core'; @Injectable() @Pipe({name: 'isFunction'}) export class IsFunctionPipe implements PipeTransform { transform(value: any): boolean { return typeof value === 'function'; } }