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