(ctx)
| 425 | // ---------------- |
| 426 | |
| 427 | function c(ctx) { |
| 428 | var methods = [].slice.call(arguments, 1); |
| 429 | |
| 430 | return function() { |
| 431 | var args = [].slice.call(arguments); |
| 432 | |
| 433 | _.each(methods, function(method) { |
| 434 | return ctx[method].apply(ctx, args); |
| 435 | }); |
| 436 | }; |
| 437 | } |
| 438 | })(); |