Files
nomad/ui/app/utils/fetch.js
2017-11-21 11:22:41 -08:00

7 lines
153 B
JavaScript

import fetch from 'fetch';
// The ember-fetch polyfill does not provide streaming
const fetchToUse = window.fetch || fetch;
export default fetchToUse;