Skip to content

Commit

Permalink
var -> const in require statements, use arrow function in define requ…
Browse files Browse the repository at this point in the history
…ire call, phetsims/tasks#1010
  • Loading branch information
zepumph committed Oct 22, 2019
1 parent 7f9944f commit a5f2b92
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions js/accessibility/UtteranceQueueIO.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,15 @@
*
* @author Michael Kauzmann (PhET Interactive Simulations)
*/
define( function( require ) {
define( require => {
'use strict';

// modules
var BooleanIO = require( 'TANDEM/types/BooleanIO' );
var ObjectIO = require( 'TANDEM/types/ObjectIO' );
var sceneryPhet = require( 'SCENERY_PHET/sceneryPhet' );
var StringIO = require( 'TANDEM/types/StringIO' );
var VoidIO = require( 'TANDEM/types/VoidIO' );
const BooleanIO = require( 'TANDEM/types/BooleanIO' );
const ObjectIO = require( 'TANDEM/types/ObjectIO' );
const sceneryPhet = require( 'SCENERY_PHET/sceneryPhet' );
const StringIO = require( 'TANDEM/types/StringIO' );
const VoidIO = require( 'TANDEM/types/VoidIO' );

class UtteranceQueueIO extends ObjectIO {}

Expand Down

0 comments on commit a5f2b92

Please sign in to comment.