fileBlob_worker.js (240B)
1 /** 2 * Expects a blob. Returns an object containing the size, type. 3 */ 4 onmessage = function (event) { 5 var file = event.data; 6 7 var rtnObj = new Object(); 8 9 rtnObj.size = file.size; 10 rtnObj.type = file.type; 11 12 postMessage(rtnObj); 13 };