Skip to content

Instantly share code, notes, and snippets.

@asmaemk
asmaemk / capitalizefirst.pipe.ts
Created August 7, 2021 15:20 — forked from chl03ks/capitalizefirst.pipe.ts
An Angular 2 pipe to capitalize the first letter of a string value.
import { Pipe, PipeTransform } from '@angular/core';
/*
* Capitalize the first letter of the string
* Takes a string as a value.
* Usage:
* value | capitalizefirst
* Example:
* // value.name = daniel
* {{ value.name | capitalizefirst }}
* fromats to: Daniel