Skip to content

Commit

Permalink
Replaced var with const for root.js
Browse files Browse the repository at this point in the history
Addresses replace-var-with-let/const

Credit: @RobertJGabriel
PR-URL: #211
Close: #211
Reviewed-by: @isaacs
  • Loading branch information
RobertJGabriel authored and isaacs committed Jul 10, 2019
1 parent 7c92800 commit ff5458a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/root.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
module.exports = root

var npm = require('./npm.js')
var output = require('./utils/output.js')
const npm = require('./npm.js')
const output = require('./utils/output.js')

root.usage = 'npm root [-g]'

Expand Down

0 comments on commit ff5458a

Please sign in to comment.