mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
14 lines
239 B
JavaScript
14 lines
239 B
JavaScript
|
/**
|
||
|
* Expects a blob. Returns an object containing the size, type.
|
||
|
*/
|
||
|
onmessage = function(event) {
|
||
|
var file = event.data;
|
||
|
|
||
|
var rtnObj = new Object();
|
||
|
|
||
|
rtnObj.size = file.size;
|
||
|
rtnObj.type = file.type;
|
||
|
|
||
|
postMessage(rtnObj);
|
||
|
};
|