mirror of
https://github.com/transloadit/uppy.git
synced 2026-07-23 02:08:30 +00:00
7 lines
254 B
JavaScript
7 lines
254 B
JavaScript
module.exports = function getSpeed (fileProgress) {
|
|
if (!fileProgress.bytesUploaded) return 0
|
|
|
|
const timeElapsed = Date.now() - fileProgress.uploadStarted
|
|
const uploadSpeed = fileProgress.bytesUploaded / (timeElapsed / 1000)
|
|
return uploadSpeed
|
|
}
|