transform(value:string): string { let first = value.substr(0,1).toUpperCase(); return first + value.substr(1); }