UNPKG

yt-dlx

Version:

Effortless Audio-Video Downloader And Streamer!

14 lines 628 B
/** * Calculates the estimated time remaining based on the start time and completion percentage. * * @param startTime - The start time of the operation. * @param percent - The completion percentage of the operation. * @returns The estimated time remaining in seconds as a string with two decimal places. */ export default function calculateETA(startTime, percent) { var currentTime = new Date(); var elapsedTime = (currentTime.getTime() - startTime.getTime()) / 1000; var remainingTime = (elapsedTime / percent) * (100 - percent); return remainingTime.toFixed(2); } //# sourceMappingURL=calculateETA.js.map