(f)
| 650 | } |
| 651 | |
| 652 | function bind(f) { |
| 653 | var args = Array.prototype.slice.call(arguments, 1) |
| 654 | return function () { |
| 655 | return f.apply(null, args) |
| 656 | } |
| 657 | } |
| 658 | |
| 659 | function copyObj(obj, target, overwrite) { |
| 660 | if (!target) { |
no outgoing calls
no test coverage detected