(array, f)
| 6962 | } |
| 6963 | if ([].indexOf) indexOf = function(array, elt) { return array.indexOf(elt); }; |
| 6964 | function map(array, f) { |
| 6965 | var out = []; |
| 6966 | for (var i = 0; i < array.length; i++) out[i] = f(array[i], i); |
| 6967 | return out; |
| 6968 | } |
| 6969 | if ([].map) map = function(array, f) { return array.map(f); }; |
| 6970 | |
| 6971 | function createObj(base, props) { |
no test coverage detected