Files
hydra/src/main/services/download/helpers.ts
2024-06-27 17:18:48 +01:00

14 lines
267 B
TypeScript

export const calculateETA = (
totalLength: number,
completedLength: number,
speed: number
) => {
const remainingBytes = totalLength - completedLength;
if (remainingBytes >= 0 && speed > 0) {
return (remainingBytes / speed) * 1000;
}
return -1;
};