Skip to content

Instantly share code, notes, and snippets.

@cacheflow
Created November 3, 2015 04:26
Show Gist options
  • Save cacheflow/73c6f2deda9f86e952c3 to your computer and use it in GitHub Desktop.
Save cacheflow/73c6f2deda9f86e952c3 to your computer and use it in GitHub Desktop.
//tutorial
getBio(username){
username = username.toLowerCase().trim();
var url = `https://api.github.com/users/${username}`;
return fetch(url).then((res) => res.json())
}
getBio(username) {
username = username.toLowerCase().trim();
var url = `http://api.github.com/users/${username}`;
return fetch(url).then((res) => res.json())
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment