Remote and Local Files Reference
Remote file
function fileSelect() {
fetch(remote.value).then(r => r.blob())
.then(checkFiles) //called with Blob b
}
function checkFiles(b) {
let a = [...local.files]
//Implement this
out.innerText += 'Implement this '
}