Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
@filerobot/utils / lib / getBytesRemaining.js
Size: Mime:
var getBytesRemaining = function getBytesRemaining(files) {
  return files.reduce(function (total, file) {
    return total + (file.progress.bytesTotal - file.progress.bytesFinished);
  }, 0);
};
export default getBytesRemaining;