Skip to content

Commit ff5458a

Browse files
RobertJGabrielisaacs
authored and
isaacs
committedJul 10, 2019
Replaced var with const for root.js
Addresses replace-var-with-let/const Credit: @RobertJGabriel PR-URL: #211 Close: #211 Reviewed-by: @isaacs
1 parent 7c92800 commit ff5458a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed
 

‎lib/root.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
module.exports = root
22

3-
var npm = require('./npm.js')
4-
var output = require('./utils/output.js')
3+
const npm = require('./npm.js')
4+
const output = require('./utils/output.js')
55

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

0 commit comments

Comments
 (0)
Please sign in to comment.