Advertisement
Guest User

Untitled

a guest
Aug 23rd, 2016
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. /**
  2. * Passado os segundos, retorna um valor no formato HH:MM:SS
  3. * @param seconds
  4. * @returns {string}
  5. */
  6. const getHorasMinutosSegundos = (seconds) => {
  7. return new Date(seconds * 1000).toISOString().substr(11, 8);
  8. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement