ソースを参照

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
 }