MCPcopy
hub / github.com/stemkoski/stemkoski.github.com / partialRight

Function partialRight

MathBox/mathbox-bundle.js:40795–40797  ·  view source on GitHub ↗

* 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)

Source from the content-addressed store, hash-verified

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

Callers

nothing calls this directly

Calls 2

createWrapperFunction · 0.85
sliceFunction · 0.85

Tested by

no test coverage detected