-
Notifications
You must be signed in to change notification settings - Fork 330
Open
Description
Package Scope
- Add to an existing package
- New package
Package name: @toss/utils
Overview
In clamp.ts
Hello!
I'm a student studying the toss/slash function and I came across the clamp function's source code. Looking at the bound1 and bound2 parameters, I find them difficult to predict exactly. I'm suggesting changing them to explicit parameter names for better clarity. Additionally, currently, bound2 is an optional property, so if it's not specified, it returns the minimum value. Therefore, I think it would be better to update the description to say that if the value is greater than the maximum, it returns the maximum value, otherwise, it returns the minimum value. What do you think?
I'm enjoying studying your great code. Thank you!😀😀😀
Describe the solution you'd like
export function clamp(value: number, min: number, max?: number) {
if (max == null) {
return Math.min(value, min);
}
if (max < min) {
throw new Error('The value of max must be a number greater than min.');
}
return Math.min(Math.max(value, min), max);
}export function clamp(value: number, lowerBound: number, upperBound?: number) {
if (upperBound == null) {
return Math.min(value, lowerBound);
}
if (upperBound < lowerBound) {
throw new Error('The value of upperBound must be a number greater than lowerBound.');
}
return Math.min(Math.max(value, lowerBound), upperBound);
}- ko.md
어떤 값의 최댓값, 최솟값을 설정합니다. 그 값이 최댓값보다 크다면, 최댓값을 반환합니다. 그렇지않다면 최솟값을 반환합니다. - en.md
If the value is greater than its upper bound, it returns its upper bound. Otherwise, it returns its lower bound
Additional context
Metadata
Metadata
Assignees
Labels
No labels