mirror of
https://bitbucket.org/librepilot/librepilot.git
synced 2025-03-21 13:28:58 +01:00
19 lines
288 B
JavaScript
19 lines
288 B
JavaScript
// ***********************
|
|
// common.js
|
|
//
|
|
// Common javascript utils
|
|
//
|
|
// Librepilot
|
|
// ***********************
|
|
|
|
// Format time
|
|
function formatTime(time) {
|
|
if (time === 0)
|
|
return "00"
|
|
if (time < 10)
|
|
return "0" + time;
|
|
else
|
|
return time.toString();
|
|
}
|
|
|