mirror of
https://github.com/whoisclebs/lodash.git
synced 2026-02-10 19:07:49 +00:00
Use “composes” to describe flow/flowRight. [closes #2979]
This commit is contained in:
2
flow.js
2
flow.js
@@ -1,5 +1,5 @@
|
|||||||
/**
|
/**
|
||||||
* Creates a function that returns the result of invoking the given functions
|
* Composes a function that returns the result of invoking the given functions
|
||||||
* with the `this` binding of the created function, where each successive
|
* with the `this` binding of the created function, where each successive
|
||||||
* invocation is supplied the return value of the previous.
|
* invocation is supplied the return value of the previous.
|
||||||
*
|
*
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
import flow from './flow.js'
|
import flow from './flow.js'
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* This method is like `flow` except that it creates a function that
|
* This method is like `flow` except that it composes a function that
|
||||||
* invokes the given functions from right to left.
|
* invokes the given functions from right to left.
|
||||||
*
|
*
|
||||||
* @since 3.0.0
|
* @since 3.0.0
|
||||||
|
|||||||
Reference in New Issue
Block a user