()
| 5 | var toggles = document.querySelectorAll('.js-toggle-navigation'); |
| 6 | |
| 7 | function toggleNavigation() { |
| 8 | navigation.classList.contains(ACTIVE_CLASS) ? |
| 9 | navigation.classList.remove(ACTIVE_CLASS) : |
| 10 | navigation.classList.add(ACTIVE_CLASS); |
| 11 | } |
| 12 | |
| 13 | Array.prototype.forEach.call( |
| 14 | toggles, |
nothing calls this directly
no outgoing calls
no test coverage detected