File system, based on the spec reference implementation
Hi, The code: ```javascript const fileHandle = await showSaveFilePicker({ _preferPolyfill: false, suggestedName: 'test.jpg' }); if (fileHandle) { const response = await fetch('https://test.com/test.jpg'); const writable = await fileHandle.createWritable(); await response.body.pipeTo(writable); } ``` Works well in Chrome, Opera and FF. But on Safari 16.1 on Mac it throws the error: **TypeError: Constructor requires 'new' operator** It comes from this line: ```javascript const writable = await fileHandle.createWritable(); ``` Am I doing something wrong here?
This issue appears to be discussing a feature request or bug report related to the repository. Based on the content, it seems to be resolved. The issue was opened by adamblok and has received 3 comments.