All Downloads are FREE. Search and download functionalities are using the official Maven repository.

src.app.shared.pipes.search-text.pipe.ts Maven / Gradle / Ivy

There is a newer version: 3.0.0
Show newest version
import { Pipe, PipeTransform } from '@angular/core';
import { filterOnTextContent } from '@shared/tools';

@Pipe({
    name: 'searchTextPipe'
})
export class SearchTextPipe implements PipeTransform {

    transform(input: any, filtertext: string, args: any[]) {
        return filterOnTextContent(input, filtertext, args);
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy