Skip to content

Instantly share code, notes, and snippets.

@gsans
Created December 4, 2016 11:17
Show Gist options
  • Save gsans/795578c4f3c9e3444601adad59ae831a to your computer and use it in GitHub Desktop.
Save gsans/795578c4f3c9e3444601adad59ae831a to your computer and use it in GitHub Desktop.
capitalisePipe.ts
import {Pipe, PipeTransform} from '@angular/core';
@Pipe({
name: 'capitalise'
})
export class CapitalisePipe implements PipeTransform {
transform(value: string): string {
if (typeof value !== 'string') {
throw new Error('Requires a String as input');
}
return value.toUpperCase();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment