Spaces:
Runtime error
Runtime error
File size: 512 Bytes
b5ea024 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.DefaultNumberOption = void 0;
function DefaultNumberOption(val, min, max, fallback) {
if (val !== undefined) {
val = Number(val);
if (isNaN(val) || val < min || val > max) {
throw new RangeError("".concat(val, " is outside of range [").concat(min, ", ").concat(max, "]"));
}
return Math.floor(val);
}
return fallback;
}
exports.DefaultNumberOption = DefaultNumberOption;
|