]> git.uio.no Git - u/erikhf/frm.git/blob - src/components/search/livesearch.ts
1b94dce95ce667c6aa05f94febe9308dddf7a168
[u/erikhf/frm.git] / src / components / search / livesearch.ts
1 import {View, CORE_DIRECTIVES} from 'angular2/angular2';
2 import {Pipe} from 'angular2/angular2';
3
4
5
6 @Pipe({
7     name: 'livesearch'
8 })
9 export class Livesearch {
10     transform(value, args) { return value * 2; }
11 }
12