Skip to content

Instantly share code, notes, and snippets.

@jamlfy
jamlfy / search.js
Last active July 10, 2019 18:18
Search on pipe in Angular2
import { Pipe, PipeTransform, Injectable } from '@angular/core';
/**
*
* <input [(model)]="query" type="text" />
* <ul>
* <li *ngFor="let hero of heroes | search:query" >{{hero.name}}</li>
* </ul>
*/