12345678910111213141516171819 |
- import { Pipe, PipeTransform } from '@angular/core';
-
- /**
- * Generated class for the $CLASSNAME pipe.
- *
- * See https://angular.io/api/core/Pipe for more info on Angular Pipes.
- */
- @Pipe({
- name: '$PIPENAME',
- })
- export class $CLASSNAME implements PipeTransform {
- /**
- * Takes a value and makes it lowercase.
- */
- transform(value: string, ...args) {
- return value.toLowerCase();
- }
- }
|