Skip to content

Instantly share code, notes, and snippets.

@lithin
Last active July 12, 2016 10:22
Show Gist options
  • Save lithin/026bf6a89bc8651f978275cb371c87db to your computer and use it in GitHub Desktop.
Save lithin/026bf6a89bc8651f978275cb371c87db to your computer and use it in GitHub Desktop.
import { toClj } from 'mori';
async function getUser() {
// fetch json data from our API
const user = await fetch('http://api.com/user');
const userJson = await user.json();
// convert the object into a clojure's hashMap
return toClj(userJson);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment