- From: Annop Chawwalitsitthikun <notifications@github.com>
- Date: Sat, 10 Apr 2021 22:13:11 -0700
- To: w3c/FileAPI <FileAPI@noreply.github.com>
- Cc: Subscribed <subscribed@noreply.github.com>
Received on Sunday, 11 April 2021 05:13:27 UTC
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