Skip to content

Instantly share code, notes, and snippets.

@PatrickKalkman
Created December 4, 2021 07:13
Show Gist options
  • Save PatrickKalkman/97e88a908c8d61610c4c892fbc6d2cd6 to your computer and use it in GitHub Desktop.
Save PatrickKalkman/97e88a908c8d61610c4c892fbc6d2cd6 to your computer and use it in GitHub Desktop.
@Pipe({
name: 'duration',
pure: true
})
export class DurationPipe implements PipeTransform {
transform(value: any): any {
const { min, sec } = parseDuration(value);
return `${min}m${padTime(sec)}s`;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment