1
0
mirror of https://github.com/laurent22/joplin.git synced 2025-04-04 21:35:03 +02:00

26 lines
698 B
JavaScript
Raw Normal View History

let shim = {};
2017-07-10 18:09:58 +00:00
shim.isNode = () => {
if (typeof process === 'undefined') return false;
2017-08-01 23:40:14 +02:00
return process.title == 'node';
2017-07-10 18:09:58 +00:00
};
shim.isReactNative = () => {
return !shim.isNode();
};
shim.fetch = typeof fetch !== 'undefined' ? fetch : null;
2017-07-06 19:29:09 +00:00
shim.FormData = typeof FormData !== 'undefined' ? FormData : null;
shim.fs = null;
shim.FileApiDriverLocal = null;
shim.readLocalFileBase64 = () => { throw new Error('Not implemented'); }
2017-08-01 23:40:14 +02:00
shim.uploadBlob = () => { throw new Error('Not implemented'); }
shim.setInterval = function(fn, interval) {
return setInterval(fn, interval);
}
shim.clearInterval = function(id) {
return clearInterval(id);
}
shim.detectAndSetLocale = null;
2017-11-03 00:13:17 +00:00
module.exports = { shim };