mirror of
https://github.com/mozilla/pdf.js.git
synced 2025-04-22 16:18:08 +02:00
Merge pull request #15023 from Snuffleupagus/prefer-array-flat
Enable the `unicorn/prefer-array-flat` and `unicorn/prefer-array-flat-map` ESLint plugin rules
This commit is contained in:
commit
26ae50e449
2 changed files with 3 additions and 1 deletions
|
@ -254,7 +254,7 @@ function searchNode(
|
|||
if (isFinite(index)) {
|
||||
root = nodes.filter(node => index < node.length).map(node => node[index]);
|
||||
} else {
|
||||
root = nodes.reduce((acc, node) => acc.concat(node), []);
|
||||
root = nodes.flat();
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue