UNPKG

ng2-pipes

Version:
11 lines (8 loc) 255 B
import {PipeTransform, Pipe, Injectable} from '@angular/core'; @Injectable() @Pipe({name: 'ucfirst'}) export class UcFirstPipe implements PipeTransform { transform(text:string):string { return text.slice(0, 1).toUpperCase() + text.slice(1); } }