Skip to content

Instantly share code, notes, and snippets.

@netroy
Last active November 19, 2019 18:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save netroy/804e9f4abcc3d4e91de4b5775d6e2613 to your computer and use it in GitHub Desktop.
Save netroy/804e9f4abcc3d4e91de4b5775d6e2613 to your computer and use it in GitHub Desktop.
backup data from Wunderlist web app
var exporter = requirejs.s.contexts._.defined["backend/export"]
exporter.fetchAllTheData()
.fail(e => console.log("error", e))
.done(data => {
var link = exporter.getBlobLink(data)
document.body.appendChild(link)
link.click()
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment