merge-prop-functions
v1.1.0
Published
A util for merging two functions that return props objects into a single function.
Readme
Merge Prop Functions
merge-prop-functions is a simple utility for merging two functions
that produce React props objects into a single function. Any function
props will be merged into a single function that calls both functions.
Installation
Install merge-prop-functions as a dependency
# Yarn
$ yarn add merge-prop-functions
# NPM
$ npm install merge-prop-functionsUsage
Usage is simple.
var newPropsFunc = mergeProps(originalPropsFunc, additionalPropsFunc);