* This method is like `_.partial` except that `partial` arguments are * appended to those provided to the new function. * * @static * @memberOf _ * @category Functions * @param {Function} func The function to partially apply arguments to. * @param {...*} [arg] Argu
(func)
| 40793 | * // => { '_': _, 'jq': $ } |
| 40794 | */ |
| 40795 | function partialRight(func) { |
| 40796 | return createWrapper(func, 32, null, slice(arguments, 1)); |
| 40797 | } |
| 40798 | |
| 40799 | /** |
| 40800 | * Creates a function that, when executed, will only call the `func` function |
nothing calls this directly
no test coverage detected