(value, min, max)
| 116 | } |
| 117 | |
| 118 | function clamp(value, min, max) { |
| 119 | return Math.max(min, Math.min(max, value)); |
| 120 | } |
| 121 | |
| 122 | export default function createTouchSelectionMenu(view, options = {}) { |
| 123 | return new TouchSelectionMenuController(view, options); |