Files
react-native-video-cache/index.js
Kyle Fang 93dc450a21 fix: typo
2020-10-07 11:00:21 +08:00

12 lines
247 B
JavaScript

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