@wordpress/compose
Version:
WordPress higher-order components (HOCs).
17 lines (14 loc) • 453 B
text/typescript
/**
* Internal dependencies
*/
import { basePipe } from './pipe';
/**
* Composes multiple higher-order components into a single higher-order component. Performs right-to-left function
* composition, where each successive invocation is supplied the return value of the previous.
*
* This is inspired by `lodash`'s `flowRight` function.
*
* @see https://lodash.com/docs/4#flow-right
*/
const compose = basePipe( true );
export default compose;