blob: d5512ef0245e1daf9c509d4d3bfe826f5dd582eb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
var reader = new FileReaderSync();
/**
* Expects an object containing a file and an encoding then uses a
* FileReaderSync to read the file. Returns an object containing the
* file read a binary string, text, url and ArrayBuffer.
*/
onmessage = function (event) {
var file = event.data.file;
var encoding = event.data.encoding;
var rtnObj = new Object();
if (encoding != undefined) {
rtnObj.text = reader.readAsText(file, encoding);
} else {
rtnObj.text = reader.readAsText(file);
}
rtnObj.bin = reader.readAsBinaryString(file);
rtnObj.url = reader.readAsDataURL(file);
rtnObj.arrayBuffer = reader.readAsArrayBuffer(file);
postMessage(rtnObj);
};
|