1
0
mirror of https://github.com/laurent22/joplin.git synced 2024-12-18 09:35:20 +02:00
joplin/ReactNativeClient/lib/shim.js

18 lines
445 B
JavaScript
Raw Normal View History

let shim = {};
2017-07-10 20:09:58 +02:00
shim.isNode = () => {
if (typeof process === 'undefined') return false;
return process.title = 'node';
};
shim.isReactNative = () => {
return !shim.isNode();
};
shim.fetch = typeof fetch !== 'undefined' ? fetch : null;
2017-07-06 21:29:09 +02:00
shim.FormData = typeof FormData !== 'undefined' ? FormData : null;
shim.fs = null;
shim.FileApiDriverLocal = null;
shim.readLocalFileBase64 = () => { throw new Error('Not implemented'); }
export { shim };