@uppy/utils
Version:
Shared utility functions for Uppy Core and plugins maintained by the Uppy team.
14 lines (10 loc) • 472 B
text/typescript
import getSpeed from './getSpeed.js'
import getBytesRemaining from './getBytesRemaining.js'
import type { FileProgress } from './FileProgress.js'
export default function getETA(fileProgress: FileProgress): number {
if (!fileProgress.bytesUploaded) return 0
const uploadSpeed = getSpeed(fileProgress)
const bytesRemaining = getBytesRemaining(fileProgress)
const secondsRemaining = Math.round((bytesRemaining / uploadSpeed) * 10) / 10
return secondsRemaining
}