2017-07-06 20:58:01 +02:00
|
|
|
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();
|
|
|
|
};
|
|
|
|
|
2017-07-06 20:58:01 +02:00
|
|
|
shim.fetch = typeof fetch !== 'undefined' ? fetch : null;
|
2017-07-06 21:29:09 +02:00
|
|
|
shim.FormData = typeof FormData !== 'undefined' ? FormData : null;
|
2017-07-06 20:58:01 +02:00
|
|
|
|
|
|
|
if (!shim.fetch) {
|
|
|
|
let moduleName = 'node-fetch';
|
|
|
|
shim.fetch = require(moduleName);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!shim.FormData) {
|
|
|
|
let moduleName = 'form-data';
|
|
|
|
shim.FormData = require(moduleName);
|
|
|
|
}
|
|
|
|
|
|
|
|
export { shim };
|