(array, item)
| 10236 | |
| 10237 | // IE doesn't support Array#indexOf, so have a simple replacement |
| 10238 | function index(array, item){ |
| 10239 | var i = array.length; |
| 10240 | while(i--) if(array[i]===item) return i; |
| 10241 | return -1; |
| 10242 | } |
| 10243 | |
| 10244 | // handle keydown event |
| 10245 | function dispatch(event, scope){ |
no outgoing calls
no test coverage detected
searching dependent graphs…