Files
oki-podcast-reader/src/routes/api/code/seconds-to-timestamp.js
T

9 lines
231 B
JavaScript
Raw Normal View History

2023-07-13 00:27:14 +01:00
import { seconds_to_timestamp } from 'svelte-podcast/utility';
2023-07-11 22:13:18 +01:00
// Example
seconds_to_timestamp(5173); // 01:26:13
// force hours
seconds_to_timestamp(2700, true); // 00:45:00
seconds_to_timestamp(2700, false); // 45:00 (default)