(obj, fn)
| 130 | //Similar to Function.prototype.bind, but the 'this' object is specified |
| 131 | //first, since it is easier to read/figure out what 'this' will be. |
| 132 | function bind(obj, fn) { |
| 133 | return function () { |
| 134 | return fn.apply(obj, arguments); |
| 135 | }; |
| 136 | } |
| 137 | |
| 138 | function scripts() { |
| 139 | return document.getElementsByTagName('script'); |
no outgoing calls
no test coverage detected
searching dependent graphs…