Skip to content

Instantly share code, notes, and snippets.

@ghsyeung
Created November 20, 2018 20:21
Show Gist options
  • Save ghsyeung/88fb0d713b406a536df05ec576bc3113 to your computer and use it in GitHub Desktop.
Save ghsyeung/88fb0d713b406a536df05ec576bc3113 to your computer and use it in GitHub Desktop.
Dependency Injection
import fetch from "fetch";
class WebScraper {
public download(link) {
const page = fetch(link);
if (page.status === "OK") {
this.cache.add(link, page);
} else {
this.scheduler.schedule(link);
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment