(number, min, max)
| 14 | }; |
| 15 | |
| 16 | const clamp = function(number, min, max) { |
| 17 | return Math.max(min, Math.min(number, max)); |
| 18 | } |
| 19 | |
| 20 | // Initialize the application, and populates dropdowns and the default post. |
| 21 |
no outgoing calls
no test coverage detected