File tree Expand file tree Collapse file tree 3 files changed +6
-3
lines changed Expand file tree Collapse file tree 3 files changed +6
-3
lines changed Original file line number Diff line number Diff line change 22// Use of this source code is governed by a MIT-style license that can be
33// found in the LICENSE file.
44
5- import RNFetchBlob from '../index.js'
5+ import { NativeModules } from 'react-native' ;
66import fs from '../fs.js'
77import getUUID from '../utils/uuid'
88import Log from '../utils/log.js'
99import EventTarget from './EventTarget'
1010
11+ const RNFetchBlob = NativeModules . RNFetchBlob
1112const log = new Log ( 'Blob' )
1213const blobCacheDir = fs . dirs . DocumentDir + '/RNFetchBlob-blobs/'
1314
Original file line number Diff line number Diff line change 1- import RNFetchBlob from '../index.js'
1+ import { NativeModules } from 'react-native' ;
22import Log from '../utils/log.js'
33import fs from '../fs'
44import unicode from '../utils/unicode'
55import Blob from './Blob'
66
7+ const RNFetchBlob = NativeModules . RNFetchBlob
78const log = new Log ( 'FetchPolyfill' )
89
910log . disable ( )
Original file line number Diff line number Diff line change 22// Use of this source code is governed by a MIT-style license that can be
33// found in the LICENSE file.
44
5- import RNFetchBlob from '../index.js'
5+ import { NativeModules } from 'react-native' ;
66import XMLHttpRequestEventTarget from './XMLHttpRequestEventTarget.js'
77import Log from '../utils/log.js'
88import Blob from './Blob.js'
99import ProgressEvent from './ProgressEvent.js'
1010import URIUtil from '../utils/uri'
1111
12+ const RNFetchBlob = NativeModules . RNFetchBlob
1213const log = new Log ( 'XMLHttpRequest' )
1314
1415log . disable ( )
You can’t perform that action at this time.
0 commit comments