Open dobesv opened 5 years ago
This file is not run through babel but it uses const. The other files that are run through babel replace const with var, so this is the only file that won't work in a browser that doesn't support const. For example, an iOS 8 device.
babel
const
var
This file is not run through
babel
but it usesconst
. The other files that are run through babel replaceconst
withvar
, so this is the only file that won't work in a browser that doesn't supportconst
. For example, an iOS 8 device.