Skip to content

Instantly share code, notes, and snippets.

@lucis
Created June 21, 2020 16:44
Show Gist options
  • Save lucis/3615def1b897c035b3ee9962fed15bd4 to your computer and use it in GitHub Desktop.
Save lucis/3615def1b897c035b3ee9962fed15bd4 to your computer and use it in GitHub Desktop.
(() => {
const main = async() => {
const response = await fetch('http://cloud.publica.inf.br/clientes/jucurutu_pm/portaltransparencia/dados_abertos/?informacao=despesa&unidade=Município%20de%20Jucurutu&inicio=03/01/2020&fim=03/01/2020')
const buffer = await response.arrayBuffer();
const decoder = new TextDecoder("ISO-8859-1")
console.log(decoder.decode(buffer))
}
main()
})()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment