7 lines
185 B
Text
Executable file
7 lines
185 B
Text
Executable file
// @flow
|
|
|
|
function guard(lowerBoundary: number, upperBoundary: number, value: number): number {
|
|
return Math.max(lowerBoundary, Math.min(upperBoundary, value))
|
|
}
|
|
|
|
export default guard
|