standard / standard-www

:point_up_2: Website for JavaScript Standard Style (@standard)
https://standardjs.com
ISC License
31 stars 14 forks source link

Use const instead of var #37

Closed sonicdoe closed 5 years ago

sonicdoe commented 5 years ago

Use const instead of var to conform to the no-var ESLint rule which is coming in a future version of JavaScript Standard Style. See https://github.com/standard/eslint-config-standard/pull/152.

This change could affect browser support, however, it is arguably good enough (see caniuse.com).

feross commented 5 years ago

Thanks!