Last active
February 18, 2016 00:11
-
-
Save ebramanti/844acde859bf9db0c6b0 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const getRobotData = function*() { | |
const robot = yield Robot.find({ name: 'Wheatley' }); | |
const response = yield RobotDataAPI.get('/robots/' + robot.id); | |
return response.body.robot; | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment