Skip to content

Commit

Permalink
Update test refs
Browse files Browse the repository at this point in the history
  • Loading branch information
kdy1 committed Sep 19, 2023
1 parent 43dcb82 commit 1e4fdca
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -19083,8 +19083,8 @@
if (Array.isArray(value1)) {
if (0 === value1.length) return '[]';
if (maximumDepth1 < stack1.length + 1) return '"[Array]"';
stack1.push(value1);
let res1 = `\n${indentation1 += spacer1}`;
stack1.push(value1), indentation1 += spacer1;
let res1 = `\n${indentation1}`;
const join1 = `,\n${indentation1}`, maximumValuesToStringify1 = Math.min(value1.length, maximumBreadth1);
let i2 = 0;
for(; i2 < maximumValuesToStringify1 - 1; i2++){
Expand Down

0 comments on commit 1e4fdca

Please sign in to comment.