Fri, 16 Jan 2015 04:50:19 +0100
Replace accessor implementation with direct member state manipulation, by
request https://trac.torproject.org/projects/tor/ticket/9701#comment:32
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 };