You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

get-example.expected.js 234B

12345678910
  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. }