mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-22 13:32:54 +08:00
12 lines
190 B
JavaScript
12 lines
190 B
JavaScript
import {Injectable, Pipe} from 'angular2/angular2';
|
|
|
|
@Pipe({
|
|
name: '<%= fileName %>'
|
|
})
|
|
@Injectable()
|
|
class <%= jsClassName %> {
|
|
transform(v, args) {
|
|
return v.toLowerCase();
|
|
}
|
|
}
|