FLUJOS/VISUALIZACION/node_modules/polished/lib/internalHelpers/_guard.js.flow
2025-11-07 00:06:12 +01:00

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