UNPKG

256 BJavaScriptView Raw
1module.exports = function getSpeed (fileProgress) {
2 if (!fileProgress.bytesUploaded) return 0
3
4 const timeElapsed = (new Date()) - fileProgress.uploadStarted
5 const uploadSpeed = fileProgress.bytesUploaded / (timeElapsed / 1000)
6 return uploadSpeed
7}