Skip to content

Commit

Permalink
Missing semicolons
Browse files Browse the repository at this point in the history
  • Loading branch information
szmarczak committed Sep 20, 2021
1 parent 1dac94d commit cf34ee1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Expand Up @@ -33,8 +33,8 @@ const CacheableLookup = require('cacheable-lookup');

const cacheable = new CacheableLookup();

cacheable.install(http.globalAgent)
cacheable.install(https.globalAgent)
cacheable.install(http.globalAgent);
cacheable.install(https.globalAgent);

http.get('http://example.com', response => {
// Handle the response here
Expand Down

0 comments on commit cf34ee1

Please sign in to comment.