Press n or j to go to the next uncovered block, b, p or k for the previous block.
function clamp(value: number, min: number, max: number) { return Math.max(min, Math.min(max, value)); } export { clamp as default, clamp };