()
| 28569 | if (!_.isFunction(func)) throw new TypeError('Bind must be called on a function'); |
| 28570 | var args = slice.call(arguments, 2); |
| 28571 | var bound = function() { |
| 28572 | return executeBound(func, bound, context, this, args.concat(slice.call(arguments))); |
| 28573 | }; |
| 28574 | return bound; |
| 28575 | }; |
| 28576 |
no test coverage detected