|  | @@ -220,7 +220,10 @@ function fetch(...args:any):Promise {
 | 
	
		
			
			| 220 | 220 |  
 | 
	
		
			
			| 221 | 221 |    // # 241 normalize null or undefined headers, in case nil or null string
 | 
	
		
			
			| 222 | 222 |    // pass to native context
 | 
	
		
			
			| 223 |  | -  headers = _.map(headers, (h) => h || '' );
 | 
	
		
			
			|  | 223 | +  headers = _.reduce(headers, (result, value, key) => {
 | 
	
		
			
			|  | 224 | +    result[key] = value || ''
 | 
	
		
			
			|  | 225 | +    return result
 | 
	
		
			
			|  | 226 | +  }, {});
 | 
	
		
			
			| 224 | 227 |  
 | 
	
		
			
			| 225 | 228 |    // fetch from file system
 | 
	
		
			
			| 226 | 229 |    if(URIUtil.isFileURI(url)) {
 |