tomayac’s avatartomayac’s Twitter Archive—№ 17,213

  1. …in reply to @mischmerz
    @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();