mirror of
https://github.com/zen-browser/pdf.js.git
synced 2025-07-09 01:35:43 +02:00
Fix remaining linting errors, from enabling the prefer-const
ESLint rule globally
This covers cases that the `--fix` command couldn't deal with, and in a few cases (notably `src/core/jbig2.js`) the code was changed to use block-scoped variables instead.
This commit is contained in:
parent
9e262ae7fa
commit
83bdb525a4
10 changed files with 76 additions and 109 deletions
|
@ -461,8 +461,8 @@ class StatTimer {
|
|||
|
||||
toString() {
|
||||
// Find the longest name for padding purposes.
|
||||
let outBuf = [],
|
||||
longest = 0;
|
||||
const outBuf = [];
|
||||
let longest = 0;
|
||||
for (const time of this.times) {
|
||||
const name = time.name;
|
||||
if (name.length > longest) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue