Skip to content

Commit

Permalink
updated environment.js to use const insted of var for constant proper…
Browse files Browse the repository at this point in the history
…ty (#709)

* updated environment.js to use const insted of var for constant property

* Added use strict
  • Loading branch information
pbrahmbhatt3 authored and humphd committed Jan 31, 2019
1 parent fc545ee commit 7e46fcd
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/shell/environment.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
var defaults = require('../constants.js').ENVIRONMENT;
'use strict';
const defaults = require('../constants.js').ENVIRONMENT;

module.exports = function Environment(env) {
env = env || {};
Expand Down

0 comments on commit 7e46fcd

Please sign in to comment.