README
@shanzhai/merge-object-input
A Shanzhai input which builds an object by merging the objects retrieved by other inputs.
Example
The following two examples are equivalent:
new MergeObjectInput([
new ConstantInput({
a: 3,
b: 10,
}),
new ConstantInput({
c: 7,
}),
]);
new ConstantInput({
a: 3,
b: 10,
c: 7,
});
Dependencies
This package has no runtime dependencies.
Peer Dependencies
This package has no runtime peer dependencies (it does not expect any other packages to be installed alongside itself).