2017-11-16 02:11:24 +00:00
|
|
|
import Ember from 'ember';
|
2017-11-14 18:50:29 +00:00
|
|
|
import fetch from 'fetch';
|
|
|
|
|
|
|
|
// The ember-fetch polyfill does not provide streaming
|
2017-11-16 02:11:24 +00:00
|
|
|
// 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;
|