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

fix(all): add keywords, reduce size, export modules #137

Merged
merged 5 commits into from
Apr 14, 2018

Conversation

daybrush
Copy link
Member

Issue

All #130
JustifiedLayout.js #122
package.json #136
index.js, index.umd.js #132

Details

@daybrush daybrush requested review from mixed and jongmoon April 13, 2018 05:49
@coveralls
Copy link

coveralls commented Apr 13, 2018

Coverage Status

Coverage increased (+1.07%) to 86.175% when pulling 976dabf on younkue:size#130 into 8a9fb90 on naver:master.

@jongmoon
Copy link

@Younkue I am going to check it 1 hours later If you don't mind. (I'm supporting service now .. )

@jongmoon
Copy link

@Younkue LGTM, I like your changes.

@mixed
Copy link
Member

mixed commented Apr 13, 2018

👍 LGTM

Copy link
Member

@mixed mixed left a comment

Choose a reason for hiding this comment

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

LGTM.
nits : remove repeat code

} else {
return ItemManager.pluck(this._data, property);
}
const data = typeof start === "undefined" ? this._data : this._data.slice(start, (typeof end === "undefined" ? start : end) + 1);
Copy link
Member

Choose a reason for hiding this comment

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

I think that It repeat same code that undefined check if condition.

return this._data.slice(start, start + 1);
}
} else {
if (typeof start === "undefined") {
Copy link
Member

Choose a reason for hiding this comment

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

undefined check if condition.

return this._data.concat();
}
return this._data.slice(start, (typeof end === "undefined" ? start : end) + 1);
Copy link
Member

Choose a reason for hiding this comment

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

undefined check if condition.

@daybrush daybrush merged commit c846787 into naver:master Apr 14, 2018
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.

4 participants