Properties

getBasename

Hook that runs when determining the basename for a file. Defaults to () => 'Untitled'

getBasename?: (entry: FilePondEntry, blob: Blob) => string

getExtension

Hook that runs when determining the extension of a file. The default behavior derives the extension from the file mime type. Override this function or use mimeTypeMap if an extension isn’t computed correctly.

getExtension?: (entry: FilePondEntry, blob: Blob) => string

getFilename

Hook that runs when determining the name of a file. By default combines the result of getBasename() and getExtension()

getFilename?: (entry: FilePondEntry, blob: Blob) => string

mimeTypeMap

An object with key value pairs describing mime type relation to extension. Defaults to undefined, example { 'application/ld+json': 'jsonld' }

mimeTypeMap?: { [key: string]: string; }