(collection, elt)
| 5616 | } |
| 5617 | |
| 5618 | function indexOf(collection, elt) { |
| 5619 | if (collection.indexOf) return collection.indexOf(elt); |
| 5620 | for (var i = 0, e = collection.length; i < e; ++i) |
| 5621 | if (collection[i] == elt) return i; |
| 5622 | return -1; |
| 5623 | } |
| 5624 | |
| 5625 | function createObj(base, props) { |
| 5626 | function Obj() {} |
no outgoing calls
no test coverage detected