UNPKG

81 BJavaScriptView Raw
1const isInRange = (min, max, x) => x >= min && x <= max;
2export {
3 isInRange
4};