Open jespertheend opened 9 months ago
The problem is that some messages can be sent immediately (such as fileSystem.readFile) whereas other messages first need to serialize the file into an ArrayBuffer, which is async (such as fileSystem.writeFile)
fileSystem.readFile
fileSystem.writeFile
The problem is that some messages can be sent immediately (such as
fileSystem.readFile
) whereas other messages first need to serialize the file into an ArrayBuffer, which is async (such asfileSystem.writeFile
)