Skip to content

Instantly share code, notes, and snippets.

@comnik
Created January 21, 2018 14:15
Show Gist options
  • Save comnik/835340e718a6fbd8d1256ce54a49aada to your computer and use it in GitHub Desktop.
Save comnik/835340e718a6fbd8d1256ce54a49aada to your computer and use it in GitHub Desktop.
Helper to export lots of data from a CLJS web-app, as a downloadable file.
(defn spit-url [content]
(let [blob (js/Blob. (js/Array. content) {:type "text/plain;charset=utf-8"})]
(.createObjectURL js/URL blob)))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment