forked from mirrors/gecko-dev
		
	
		
			
				
	
	
		
			16 lines
		
	
	
	
		
			359 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
	
		
			359 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| /**
 | |
|  * Expects a file. Returns an object containing the size, type, name and path.
 | |
|  */
 | |
| onmessage = function(event) {
 | |
|   var file = event.data;
 | |
| 
 | |
|   var rtnObj = new Object();
 | |
| 
 | |
|   rtnObj.size = file.size;
 | |
|   rtnObj.type = file.type;
 | |
|   rtnObj.name = file.name;
 | |
|   rtnObj.path = file.path;
 | |
|   rtnObj.lastModifiedDate = file.lastModifiedDate;
 | |
| 
 | |
|   postMessage(rtnObj);
 | |
| };
 | 
