Skip to content

Commit

Permalink
Merge 04e28d7 into 6ed7e37
Browse files Browse the repository at this point in the history
  • Loading branch information
kaatt committed May 4, 2020
2 parents 6ed7e37 + 04e28d7 commit aead72b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Expand Up @@ -18,7 +18,7 @@ const http = require('http');
const CacheableLookup = require('cacheable-lookup');
const cacheable = new CacheableLookup();

http.get('https://example.com', {lookup: cacheable.lookup}, response => {
http.get('http://example.com', {lookup: cacheable.lookup}, response => {
// Handle the response here
});
```
Expand All @@ -32,7 +32,7 @@ const cacheable = new CacheableLookup();

cacheable.install(http.globalAgent);

http.get('https://example.com', response => {
http.get('http://example.com', response => {
// Handle the response here
});
```
Expand Down

0 comments on commit aead72b

Please sign in to comment.