浏览代码

Added path wrapper API

Ben Hsieh 8 年前
父节点
当前提交
a01301ddef
共有 1 个文件被更改,包括 5 次插入0 次删除
  1. 5
    0
      src/index.js

+ 5
- 0
src/index.js 查看文件

@@ -60,6 +60,10 @@ if(!RNFetchBlob || !RNFetchBlob.fetchBlobForm || !RNFetchBlob.fetchBlob) {
60 60
   )
61 61
 }
62 62
 
63
+function wrap(path:string):string {
64
+  return 'RNFetchBlob-file://' + path
65
+}
66
+
63 67
 /**
64 68
  * Calling this method will inject configurations into followed `fetch` method.
65 69
  * @param  {RNFetchBlobConfig} options
@@ -253,4 +257,5 @@ export default {
253 257
   config,
254 258
   session,
255 259
   fs,
260
+  wrap,
256 261
 }