UI for Zipcoin Blue

ts.tmpl 395B

12345678910111213141516171819
  1. import { Pipe, PipeTransform } from '@angular/core';
  2. /**
  3. * Generated class for the $CLASSNAME pipe.
  4. *
  5. * See https://angular.io/api/core/Pipe for more info on Angular Pipes.
  6. */
  7. @Pipe({
  8. name: '$PIPENAME',
  9. })
  10. export class $CLASSNAME implements PipeTransform {
  11. /**
  12. * Takes a value and makes it lowercase.
  13. */
  14. transform(value: string, ...args) {
  15. return value.toLowerCase();
  16. }
  17. }