10 lines
322 B
JavaScript
10 lines
322 B
JavaScript
// Helper to limit a number to be inside 'min' and 'max'.
|
|
export function clamp (min, max, number) {
|
|
return Math.max(min, Math.min(number, max))
|
|
}
|
|
|
|
// Helper to round a number to 'decimals' decimals.
|
|
export function fixed (number, decimals = 1) {
|
|
return Number(Math.round(number + 'e' + decimals) + 'e-' + decimals)
|
|
}
|