UNPKG

@uppy/utils

Version:

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

7 lines (5 loc) 259 B
import type { FileProgress } from './FileProgress.js' export default function getBytesRemaining(fileProgress: FileProgress): number { if (fileProgress.bytesTotal == null) return 0 return fileProgress.bytesTotal - (fileProgress.bytesUploaded as number) }