diff options
| author | Florrie <towerofnix@gmail.com> | 2017-08-04 11:35:45 -0300 |
|---|---|---|
| committer | Florrie <towerofnix@gmail.com> | 2017-08-04 11:35:45 -0300 |
| commit | aeaf361887e0bb39d1f8228427a480965589647b (patch) | |
| tree | ededf39e0ff62da983b5dd22433baaed9b1a23d6 | |
| parent | 5b532a9fce34e4eea6f46d147ba7385c8e9a05ae (diff) | |
Remove a (hopefully???) unnecessary 'let'
| -rwxr-xr-x | src/crawl-http.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/crawl-http.js b/src/crawl-http.js index 7553e85..59777ca 100755 --- a/src/crawl-http.js +++ b/src/crawl-http.js @@ -145,7 +145,7 @@ async function main(args) { return } - let url = args[0] + const url = args[0] let maxDownloadAttempts = 5 let verbose = false |