UNPKG

421 BPlain TextView Raw
1import { NativeModulesProxy } from '@unimodules/core';
2
3import ExponentFileSystemShim from './ExponentFileSystemShim';
4import { ExponentFileSystemModule } from './FileSystem.types';
5
6let platformModule;
7
8if (NativeModulesProxy.ExponentFileSystem) {
9 platformModule = NativeModulesProxy.ExponentFileSystem;
10} else {
11 platformModule = ExponentFileSystemShim;
12}
13
14export default platformModule as ExponentFileSystemModule;