7 lines
159 B
JavaScript
7 lines
159 B
JavaScript
"use strict";
|
|
|
|
function getBytesRemaining(fileProgress) {
|
|
return fileProgress.bytesTotal - fileProgress.bytesUploaded;
|
|
}
|
|
|
|
module.exports = getBytesRemaining; |