(array, elt)
| 6956 | selectInput = function(node) { try { node.select(); } catch(_e) {} }; |
| 6957 | |
| 6958 | function indexOf(array, elt) { |
| 6959 | for (var i = 0; i < array.length; ++i) |
| 6960 | if (array[i] == elt) return i; |
| 6961 | return -1; |
| 6962 | } |
| 6963 | if ([].indexOf) indexOf = function(array, elt) { return array.indexOf(elt); }; |
| 6964 | function map(array, f) { |
| 6965 | var out = []; |
no outgoing calls
no test coverage detected