Guest User

Untitled

a guest
Jul 19th, 2018
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.18 KB | None | 0 0
  1. let decimal2HHMISS = function (decimalTimeString) {
  2. let n = new Date(0, 0);
  3. n.setSeconds(+decimalTimeString * 60 * 60);
  4. return n.toTimeString().slice(0, 8);
  5. };
Add Comment
Please, Sign In to add comment