You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When upgrading from 1.38.0 to 1.39.0, app no longer works:
Uncaught SyntaxError: Use of future reserved word in strict mode
function timeRangesToArray(ranges) {
var array = [];
for (let i = 0; i < ranges.length; i += 1) {
array.push({ start: ranges.start(i), end: ranges.end(i) });
}
return array;
}
This is because let is emitted in timeRangesToArray()
The text was updated successfully, but these errors were encountered:
When upgrading from
1.38.0
to1.39.0
, app no longer works:Uncaught SyntaxError: Use of future reserved word in strict mode
This is because
let
is emitted intimeRangesToArray()
The text was updated successfully, but these errors were encountered: