FilePond.setOptions({
server: {
fetch: (url, load, error, progress, abort, headers) => {
fetch(url)
.then(res => res.blob())
.then(load);
}
I've found this configuration online. I cannot understand why this works. Should'nt this lead to a stack-overflow?
IMO the function is calling itself recursively or am i getting anything wrong?