Skip to content

Commit

Permalink
fix: missing
Browse files Browse the repository at this point in the history
  • Loading branch information
Dunqing committed Oct 16, 2023
1 parent 2b3d469 commit fc445c5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/utils/src/helpers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ export function clone<T>(
if (Array.isArray(val)) {
out = Array((k = val.length))
seen.set(val, out)
while (k--) out[k] = clone(val[k], seen)
while (k--) out[k] = clone(val[k], seen, options)
return out as any
}

Expand Down

0 comments on commit fc445c5

Please sign in to comment.