(number, min, max)
| 1462 | }; |
| 1463 | |
| 1464 | function clamp(number, min, max) { |
| 1465 | return Math.min(Math.max(number, min), max); |
| 1466 | }; |
| 1467 | |
| 1468 | function isInArray(value, array) { |
| 1469 | return array.indexOf(value) > -1; |
no outgoing calls
no test coverage detected
searching dependent graphs…