Следующий код написан для ES6: как мне конвертировать в pre ES6, чтобы он был совместим с IE. Я пытался следовать; см. второй фрагмент кода ниже
FilePond.create(document.querySelector('input'), {
acceptedFileTypes: ['image/png'],
fileValidateTypeDetectType: (source, type) => new Promise((resolve, reject) => {
// Do custom type detection here and return with promise
resolve(type);
})
});
i tried the following
FilePond.create(imageInputElement, {
acceptedFileTypes: ['image/png', 'image/x-png', 'image/jpg', 'image/jpeg', 'image/pjpeg', 'image/gif', 'image/tiff', 'application/pdf'],
fileValidateTypeDetectType: function (source, type) {
return resolveFileType(resolve, reject);
}
})
async function resolveFileType(resolve, reject){
const response = await resolve(type);
return response;
}