get-example.expected.js 234 B

1234567891011
  1. function* myFn() {
  2. var one = yield get('https://google.com');
  3. var two = yield get('http://nodejs.org');
  4. var three = JSON.parse(yield get('http://jsonip.org'));
  5. return [
  6. one,
  7. two,
  8. three
  9. ];
  10. }