* Creates a function that, when called, invokes the method at `object[key]` * and prepends any additional `bindKey` arguments to those provided to the bound * function. This method differs from `_.bind` by allowing bound functions to * reference methods that will be redefined or don't
(object, key)
| 40378 | * // => 'hiya fred!' |
| 40379 | */ |
| 40380 | function bindKey(object, key) { |
| 40381 | return arguments.length > 2 |
| 40382 | ? createWrapper(key, 19, slice(arguments, 2), null, object) |
| 40383 | : createWrapper(key, 3, null, null, object); |
| 40384 | } |
| 40385 | |
| 40386 | /** |
| 40387 | * Creates a function that is the composition of the provided functions, |
nothing calls this directly
no test coverage detected