open-nomad/ui/app/utils/fetch.js

9 lines
261 B
JavaScript
Raw Normal View History

import Ember from 'ember';
2017-11-14 18:50:29 +00:00
import fetch from 'fetch';
// The ember-fetch polyfill does not provide streaming
// Additionally, Mirage/Pretender does not support fetch
const fetchToUse = Ember.testing ? fetch : window.fetch || fetch;
2017-11-14 18:50:29 +00:00
export default fetchToUse;