Files
react-native-video-cache/index.js
2020-10-07 10:40:44 +08:00

12 lines
233 B
JavaScript

import { NativeModules } from 'react-native';
export default (url) => {
if (!global.nativeCallSyncHook) {
return url
}
return NativeModules.VideoCache.convert(url)
};
export const convertAsync = VideoCache.convertAsync;