/** * Copyright (c) 2015-present, Facebook, Inc. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. * * @providesModule clamp * @typechecks */ 'use strict'; /** * @param {number} min * @param {number} value * @param {number} max * @return {number} */ function clamp(min, value, max) { if (value < min) { return min; } if (value > max) { return max; } return value; } module.exports = clamp;