UNPKG

252 BJavaScriptView Raw
1module.exports = function getSpeed(fileProgress) {
2 if (!fileProgress.bytesUploaded) return 0;
3 var timeElapsed = new Date() - fileProgress.uploadStarted;
4 var uploadSpeed = fileProgress.bytesUploaded / (timeElapsed / 1000);
5 return uploadSpeed;
6};
\No newline at end of file