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