Skip to content

Instantly share code, notes, and snippets.

@Hydrock
Created May 29, 2018 17:05
Show Gist options
  • Save Hydrock/a1592fc2473b2a2a3a2f742b138b154f to your computer and use it in GitHub Desktop.
Save Hydrock/a1592fc2473b2a2a3a2f742b138b154f to your computer and use it in GitHub Desktop.
function* generatorCreator () {
const response = yield fetch('https://jsonplaceholder.typicode.com/posts/1');
const data = yield response.json();
console.log(data);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment