github.com/blixtra/nomad@v0.7.2-0.20171221000451-da9a1d7bb050/ui/app/utils/fetch.js (about)

     1  import Ember from 'ember';
     2  import fetch from 'fetch';
     3  
     4  // The ember-fetch polyfill does not provide streaming
     5  // Additionally, Mirage/Pretender does not support fetch
     6  const fetchToUse = Ember.testing ? fetch : window.fetch || fetch;
     7  
     8  export default fetchToUse;