File

src/pipes/filter/filter.pipe.ts

Metadata

Methods

transform
transform(list: any, searchKey: string, searchValue: string)
Parameters :
Name Type Optional
list any No
searchKey string No
searchValue string No
Returns : any
import { Pipe, PipeTransform } from '@angular/core';

@Pipe({
  name: 'filter',
  pure: false
})
export class FilterPipe implements PipeTransform {

  transform(list: any, searchKey: string, searchValue: string): any {
    if (!searchKey || !searchValue || !list) {
      return list;
    }
    return list.filter((item) => item[searchKey].toLowerCase().includes(searchValue.toLowerCase()));
  }
}

results matching ""

    No results matching ""