Writes data to a file in the WASM filesystem for * use with csound. * * @param {string} filePath A string containing the path to write to. * @param {blob} blobData The data to write to file.
(filePath, blobData)
| 94 | * @param {blob} blobData The data to write to file. |
| 95 | */ |
| 96 | writeToFS(filePath, blobData) { |
| 97 | this.port.postMessage(["writeToFS", filePath, blobData]); |
| 98 | } |
| 99 | |
| 100 | /** |
| 101 | * |
no test coverage detected