For some reason fetch (https://fetch.spec.whatwg.org/) is not defined in Safari (Version 9.0.3), does anyone know why? It seems to be the standard and works fine in
fetch
Use whatwg-fetch polyfill. If you use webpack, you could just add it to entry point
whatwg-fetch
webpack
entry: { app: ['whatwg-fetch', 'your-index.js'] }