mirror of
https://github.com/streamyfin/streamyfin.git
synced 2025-08-20 18:37:18 +02:00
6 lines
115 B
TypeScript
6 lines
115 B
TypeScript
// seconds to ticks util
|
|
|
|
export function secondsToTicks(seconds: number): number {
|
|
return seconds * 10000000;
|
|
}
|