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.js 185B

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