UNPKG

ng2-pipes

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