getBytesRemaining.js 159 B

1234567
  1. "use strict";
  2. function getBytesRemaining(fileProgress) {
  3. return fileProgress.bytesTotal - fileProgress.bytesUploaded;
  4. }
  5. module.exports = getBytesRemaining;