Closed sonicdoe closed 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.
const
var
no-var
This change could affect browser support, however, it is arguably good enough (see caniuse.com).
Thanks!
Use
const
instead ofvar
to conform to theno-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).