Solucionado (ver solução)
Solucionado
(ver solução)
1
resposta

Uncaught SyntaxError: Unexpected token 'export' no arquivo fetch.js

Após incluir o arquivo fetch.js na pasta do polyfill, esse uncaught SyntaxErro é apresentado referente à

export function Headers(headers) {
  this.map = {}

  if (headers instanceof Headers) {
    headers.forEach(function(value, name) {
      this.append(name, value)
    }, this)
  } else if (Array.isArray(headers)) {
    headers.forEach(function(header) {
      this.append(header[0], header[1])
    }, this)
  } else if (headers) {
    Object.getOwnPropertyNames(headers).forEach(function(name) {
      this.append(name, headers[name])
    }, this)
  }
}

Alguma forma de resolver? Esse erro é apresentado no chrome

1 resposta
solução!

Problema resolvido ao longo das aulas. Especificamente após as alterações feitas na aula 7 > atividade 6 - Babel e transcompilação de módulos .