Advertisement
Guest User

Untitled

a guest
Dec 15th, 2017
150
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. const fetch = require('node-fetch')
  2.  
  3. function getBody(url) {
  4.   return fetch(url)
  5.     .then(res => res.text())
  6. }
  7.  
  8. getBody("https://wykop.pl")
  9.   .then(console.log)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement