mirror of
https://github.com/actions/setup-node.git
synced 2025-06-29 06:03:50 +00:00
.
This commit is contained in:
parent
8affe1ed56
commit
760046e9f2
7278 changed files with 0 additions and 1778943 deletions
26
node_modules/lodash/flowRight.js
generated
vendored
26
node_modules/lodash/flowRight.js
generated
vendored
|
@ -1,26 +0,0 @@
|
|||
var createFlow = require('./_createFlow');
|
||||
|
||||
/**
|
||||
* This method is like `_.flow` except that it creates a function that
|
||||
* invokes the given functions from right to left.
|
||||
*
|
||||
* @static
|
||||
* @since 3.0.0
|
||||
* @memberOf _
|
||||
* @category Util
|
||||
* @param {...(Function|Function[])} [funcs] The functions to invoke.
|
||||
* @returns {Function} Returns the new composite function.
|
||||
* @see _.flow
|
||||
* @example
|
||||
*
|
||||
* function square(n) {
|
||||
* return n * n;
|
||||
* }
|
||||
*
|
||||
* var addSquare = _.flowRight([square, _.add]);
|
||||
* addSquare(1, 2);
|
||||
* // => 9
|
||||
*/
|
||||
var flowRight = createFlow(true);
|
||||
|
||||
module.exports = flowRight;
|
Loading…
Add table
Add a link
Reference in a new issue