Skip to content

Commit

Permalink
var -> const using eslint auto fix, phetsims/tasks#1012
Browse files Browse the repository at this point in the history
  • Loading branch information
zepumph committed Sep 19, 2019
1 parent b5b81b4 commit dda3ff9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions js/initialize-globals.js
Original file line number Diff line number Diff line change
Expand Up @@ -685,8 +685,8 @@

// enables basic assertions
const enableBasicAssertions = enableAllAssertions ||
( !phet.chipper.isProduction && phet.chipper.queryParameters.ea ) ||
phet.chipper.isDebugBuild;
( !phet.chipper.isProduction && phet.chipper.queryParameters.ea ) ||
phet.chipper.isDebugBuild;

if ( enableBasicAssertions ) {
window.assertions.enableAssert();
Expand Down

0 comments on commit dda3ff9

Please sign in to comment.