/* Ignore this, simple wrapper around some not-so-well-behaved libraries that
   access the `window` object upon import. :( */

export function fetch(...args) {
  return require('isomorphic-fetch')(...args);
}

export function fetchJsonp(...args) {
  return require('fetch-jsonp')(...args);
}
