1
0
Fork 0
mirror of https://github.com/mozilla/pdf.js.git synced 2025-04-24 09:08:07 +02:00

Use a limit, in more places, when splitting strings

This should be a *tiny* bit more efficient, since it avoids parsing substrings that we don't care about.

*Please note:* I cannot find an ESLint rule to enforce this automatically.
This commit is contained in:
Jonas Jenwald 2024-02-02 13:02:31 +01:00
parent af4d2fa53c
commit 363dce6744
6 changed files with 8 additions and 8 deletions

View file

@ -745,7 +745,7 @@ class Driver {
if (!("message" in e)) {
return JSON.stringify(e);
}
return e.message + ("stack" in e ? " at " + e.stack.split("\n")[0] : "");
return e.message + ("stack" in e ? " at " + e.stack.split("\n", 1)[0] : "");
}
_getLastPageNumber(task) {