"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.isBetween = isBetween; /** * 判断值是否在区间内 * * Judge whether the value is in the interval * @param value - 值 | value * @param min - 最小值 | minimum value * @param max - 最大值 | maximum value * @returns 是否在区间内 | whether in the interval */ function isBetween(value, min, max) { return value >= min && value <= max; } //# sourceMappingURL=math.js.map