Skip to content

Commit bb5426d

Browse files
authored
Merge pull request #136 from scarlac/fix-import-export
Fixed export error, use named export
2 parents ead6535 + 44eabe2 commit bb5426d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,9 +56,9 @@ if (!ReactNativeBlobUtil || !ReactNativeBlobUtil.fetchBlobForm || !ReactNativeBl
5656
}
5757

5858
export {ReactNativeBlobUtilConfig, ReactNativeBlobUtilResponseInfo, ReactNativeBlobUtilStream} from './types';
59-
export URIUtil from './utils/uri';
59+
export { URIUtil } from './utils/uri';
6060
export {FetchBlobResponse} from './class/ReactNativeBlobUtilBlobResponse';
61-
export getUUID from './utils/uuid';
61+
export { getUUID } from './utils/uuid';
6262
export default {
6363
fetch,
6464
base64,

0 commit comments

Comments
 (0)