Thu, 22 Jan 2015 13:21:57 +0100
Incorporate requested changes from Mozilla in review:
https://bugzilla.mozilla.org/show_bug.cgi?id=1123480#c6
1 var reader = new FileReaderSync();
3 /**
4 * Expects an object containing a file and an encoding then uses a
5 * FileReaderSync to read the file. Returns an object containing the
6 * file read a binary string, text, url and ArrayBuffer.
7 */
8 onmessage = function(event) {
9 var file = event.data.file;
10 var encoding = event.data.encoding;
12 var rtnObj = new Object();
14 if (encoding != undefined) {
15 rtnObj.text = reader.readAsText(file, encoding);
16 } else {
17 rtnObj.text = reader.readAsText(file);
18 }
20 rtnObj.bin = reader.readAsBinaryString(file);
21 rtnObj.url = reader.readAsDataURL(file);
22 rtnObj.arrayBuffer = reader.readAsArrayBuffer(file);
24 postMessage(rtnObj);
25 };