(list, item)
| 31 | } |
| 32 | |
| 33 | function getItem(list, item) { |
| 34 | if (!list.slice) return list[item]; |
| 35 | for (var i = list.length - 1; i >= 0; i--) if (getText(list[i]) == item) |
| 36 | return list[i]; |
| 37 | } |
| 38 | |
| 39 | function shallowClone(object) { |
| 40 | var result = {}; |
no test coverage detected