[w3c/FileAPI] features request:add SynFileReader for Avoid Callback Hell Programming from FileReader (#162)

Avoid Callback Hell Programming from FileReader

SynFileReader
var file=new SynFileReader("test.json");
file.write("test");
file.seek(1000);
console.log(file.pointer);//return 1000
console.log(file.length());
console.log(file.read(1024));

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/w3c/FileAPI/issues/162

Received on Sunday, 11 April 2021 05:13:27 UTC