-
@mischmerz @petele The below looks workable to me:
js const handle = await showSaveFilePicker({/*…*/}); // Assume the function below takes long: const blob = await prepareDownload(someData); const writable = await handle.createWritable(); await writable.write(blob); await writable.close();