UNPKG

@uppy/utils

Version:

Shared utility functions for Uppy Core and plugins maintained by the Uppy team.

4 lines 171 B
export default function getBytesRemaining(fileProgress) { if (fileProgress.bytesTotal == null) return 0; return fileProgress.bytesTotal - fileProgress.bytesUploaded; }