소스 검색

Fix #229 immutable HTTP headers issue

Ben Hsieh 7 년 전
부모
커밋
327bbc68ba
1개의 변경된 파일1개의 추가작업 그리고 3개의 파일을 삭제
  1. 1
    3
      index.js

+ 1
- 3
index.js 파일 보기

@@ -220,9 +220,7 @@ 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
-  _.each(headers, (h,i) =>  {
224
-    headers[i] = h || ''
225
-  });
223
+  headers = _.map(headers, (h) => h || '' );
226 224
 
227 225
   // fetch from file system
228 226
   if(URIUtil.isFileURI(url)) {