1
0
Fork 0
mirror of https://github.com/iNavFlight/inav-configurator.git synced 2025-07-13 11:29:53 +03:00
inav-configurator/js/helpers.js
Pawel Spychalski (DzikuVx) 48a9b36d86 Load and save of mmix over MSP
2018-01-28 18:39:13 +01:00

15 lines
No EOL
186 B
JavaScript

/*global $*/
'use strict';
function constrain(input, min, max) {
if (input < min) {
return min;
}
if (input > max) {
return max;
}
return input;
}