Skip to content

Commit

Permalink
fix: use var instead of let
Browse files Browse the repository at this point in the history
PR-URL: #195
Credit: @Tidyzq
Close: #195
Reviewed-by: @isaacs
  • Loading branch information
Tidyzq authored and isaacs committed Aug 14, 2019
1 parent 250ee15 commit 012ecbb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rimraf.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ rimraf.sync = rimrafSync
var assert = require("assert")
var path = require("path")
var fs = require("fs")
let glob = undefined
var glob = undefined
try {
glob = require("glob")
} catch (_err) {
Expand Down

0 comments on commit 012ecbb

Please sign in to comment.