mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Add a semicolon to avoid relying on ASI in one place in String.js. No bug, r=trivial
This commit is contained in:
parent
41e2463206
commit
ed35295043
@ -68,7 +68,7 @@ function String_substr(start, length) {
|
||||
intStart = std_Math_max(intStart + size, 0);
|
||||
|
||||
// Step 9.
|
||||
var resultLength = std_Math_min(std_Math_max(end, 0), size - intStart)
|
||||
var resultLength = std_Math_min(std_Math_max(end, 0), size - intStart);
|
||||
|
||||
// Step 10.
|
||||
if (resultLength <= 0)
|
||||
|
Loading…
Reference in New Issue
Block a user