(val, arr)
| 308 | return x >= start && x <= end; |
| 309 | } |
| 310 | function inArray(val, arr) { |
| 311 | for (var i = 0; i < arr.length; i++) { |
| 312 | if (arr[i] == val) { |
| 313 | return true; |
| 314 | } |
| 315 | } |
| 316 | return false; |
| 317 | } |
| 318 | |
| 319 | // Global Vim state. Call getVimGlobalState to get and initialize. |
| 320 | var vimGlobalState; |
no outgoing calls
no test coverage detected