updated environment.js to use const insted of var for constant property (#709)

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

* Added use strict
This commit is contained in:
Priyam Brahmbhatt 2019-01-31 15:32:57 -05:00 committed by David Humphrey
parent fc545ee3c7
commit 7e46fcde8f
1 changed files with 2 additions and 1 deletions

View File

@ -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 || {};