Skip to content

Instantly share code, notes, and snippets.

View tobibechtold's full-sized avatar

Tobias Bechtold tobibechtold

View GitHub Profile
@gchokeen
gchokeen / age.ts
Created March 29, 2017 18:38
Angular 2 custom pipe for age
import {Pipe, PipeTransform} from '@angular/core';
import * as moment from 'moment';
@Pipe({
name: 'age'
})
export class AgePipe implements PipeTransform {