Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

style(chunk): Delete unnecessary white space #14

Merged
merged 2 commits into from
Jun 1, 2024

Conversation

Collection50
Copy link
Contributor

@Collection50 Collection50 commented May 31, 2024

Overview

ASIS

 for (let index = 0; index < chunkLength; index++) {
    const start = index * size;
    const end = start + size;
    
    result[index] = arr.slice( start, end);
  }

TOBE

 for (let index = 0; index < chunkLength; index++) {
    const start = index * size;
    const end = start + size;
    
    result[index] = arr.slice(start, end); // (*)
  }

Copy link

vercel bot commented May 31, 2024

@Collection50 is attempting to deploy a commit to the Toss Team on Vercel.

A member of the Team first needs to authorize it.

@raon0211 raon0211 changed the title fix(chunk): delete unnecessary white space style(chunk): delete unnecessary white space Jun 1, 2024
@raon0211 raon0211 changed the title style(chunk): delete unnecessary white space style(chunk): Delete unnecessary white space Jun 1, 2024
Copy link
Collaborator

@raon0211 raon0211 left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks, @Collection50!

@raon0211 raon0211 enabled auto-merge June 1, 2024 08:20
@raon0211 raon0211 disabled auto-merge June 1, 2024 11:52
@raon0211 raon0211 merged commit dcf0fb1 into toss:main Jun 1, 2024
1 check failed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants