1
0
mirror of https://github.com/roytam1/UXP.git synced 2026-06-24 01:08:50 +00:00
Files
UXP/dom/workers/test/fileReadSlice_worker.js
T

17 lines
421 B
JavaScript

/**
* Expects an object containing a blob, a start index and an end index
* for slicing. Returns the contents of the blob read as text.
*/
onmessage = function(event) {
var blob = event.data.blob;
var start = event.data.start;
var end = event.data.end;
var slicedBlob = blob.slice(start, end);
var fileReader = new FileReaderSync();
var text = fileReader.readAsText(slicedBlob);
postMessage(text);
};