Files
ionic-framework/scripts/templates/pipe/ts.tmpl
2016-09-13 15:02:41 -05:00

22 lines
434 B
Cheetah

import { Injectable, Pipe } from '@angular/core';
/*
Generated class for the $CLASSNAME pipe.
See https://angular.io/docs/ts/latest/guide/pipes.html for more info on
Angular 2 Pipes.
*/
@Pipe({
name: '$FILENAME'
})
@Injectable()
export class $CLASSNAME {
/*
Takes a value and makes it lowercase.
*/
transform(value, args) {
value = value + ''; // make sure it's a string
return value.toLowerCase();
}
}