react-native-macos/Libraries/Utilities/clamp.js

30 строки
486 B
JavaScript
Исходник Обычный вид История

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