| 1234567891011 |
- "use strict";
- Object.defineProperty(exports, "__esModule", { value: true });
- exports.inRange = void 0;
- function inRange(n, start, end, includeLeft, includeRight) {
- if (includeLeft === void 0) { includeLeft = true; }
- if ((includeLeft && n === start) || (includeRight && n === end))
- return true;
- return n > start && n < end;
- }
- exports.inRange = inRange;
- //# sourceMappingURL=in-range.js.map
|