Skip to content

Instantly share code, notes, and snippets.

@theSekyi
Created January 25, 2018 10:30
Show Gist options
  • Save theSekyi/e7d2b064318305c8f10c89d21a09cac5 to your computer and use it in GitHub Desktop.
Save theSekyi/e7d2b064318305c8f10c89d21a09cac5 to your computer and use it in GitHub Desktop.
let oldNavDaily = () =>
fetch(oldNavUrl)
.then(resp => {
return resp.json();
})
.then(data => {
let oldNav = data.payload.nav;
return oldNav;
});
oldNavDaily().then(console.log);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment