PATH:
usr
/
local
/
lib
/
node_modules
/
bower
/
lib
/
node_modules
/
inquirer
/
node_modules
/
lodash
/
function
var createFlow = require('../internal/createFlow'); /** * This method is like `_.flow` except that it creates a function that * invokes the provided functions from right to left. * * @static * @memberOf _ * @alias backflow, compose * @category Function * @param {...Function} [funcs] Functions to invoke. * @returns {Function} Returns the new function. * @example * * function square(n) { * return n * n; * } * * var addSquare = _.flowRight(square, _.add); * addSquare(1, 2); * // => 9 */ var flowRight = createFlow(true); module.exports = flowRight;
[-] bind.js
[edit]
[-] throttle.js
[edit]
[-] partial.js
[edit]
[-] flow.js
[edit]
[-] before.js
[edit]
[-] ary.js
[edit]
[-] memoize.js
[edit]
[-] spread.js
[edit]
[+]
..
[-] defer.js
[edit]
[-] delay.js
[edit]
[-] debounce.js
[edit]
[-] once.js
[edit]
[-] modArgs.js
[edit]
[-] restParam.js
[edit]
[-] backflow.js
[edit]
[-] bindAll.js
[edit]
[-] wrap.js
[edit]
[-] rearg.js
[edit]
[-] curry.js
[edit]
[-] bindKey.js
[edit]
[-] curryRight.js
[edit]
[-] partialRight.js
[edit]
[-] negate.js
[edit]
[-] compose.js
[edit]
[-] after.js
[edit]
[-] flowRight.js
[edit]