(f, obj)
| 79 | |
| 80 | // remember 'this' - http://blog.niftysnippets.org/2008/04/you-must-remember-this.html |
| 81 | bind(f, obj) { |
| 82 | return function () { |
| 83 | return f.apply(obj, arguments) |
| 84 | } |
| 85 | } |
| 86 | |
| 87 | /* SEARCHABLE INPUT */ |
| 88 |
no outgoing calls
no test coverage detected