UNPKG

photo-sphere-viewer

Version:

A JavaScript library to display Photo Sphere panoramas

9 lines (8 loc) 201 B
/** * @private */ export function formatTime(time) { const seconds = Math.round(time % 60); const minutes = Math.round(time - seconds) / 60; return `${minutes}:${('0' + seconds).slice(-2)}`; }