Advertisement
Guest User

Untitled

a guest
Jun 19th, 2019
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. transform(value: any, args?: any): any {
  2. // 4.1
  3. const hours = Math.floor((value / 60) / 60);
  4. const minutes = Math.floor(value / 60) % 60;
  5. const seconds = value % 60;
  6. return `${this.padding(hours)}${hours}:${this.padding(minutes)}${minutes}:${this.padding(seconds)}${seconds}`;
  7. // END 4.1
  8. }
  9.  
  10. private padding(time) {
  11. return time < 10 ? '0' : '';
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement