Skip to content

Commit

Permalink
style(chunk): Delete unnecessary white space (#14)
Browse files Browse the repository at this point in the history
Co-authored-by: Sojin Park <raon0211@toss.im>
  • Loading branch information
Collection50 and raon0211 authored Jun 1, 2024
1 parent 2c393ae commit dcf0fb1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/array/chunk.ts
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ export function chunk<T>(arr: T[], size: number): T[][] {
const start = index * size;
const end = start + size;

result[index] = arr.slice( start, end);
result[index] = arr.slice(start, end);
}

return result;
Expand Down

0 comments on commit dcf0fb1

Please sign in to comment.