Guest User

Untitled

a guest
Nov 20th, 2018
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. import fetch from "fetch";
  2.  
  3. class WebScraper {
  4. public download(link) {
  5. const page = fetch(link);
  6. if (page.status === "OK") {
  7. this.cache.add(link, page);
  8. } else {
  9. this.scheduler.schedule(link);
  10. }
  11. }
  12. }
Add Comment
Please, Sign In to add comment