mirror of
https://github.com/swc-project/swc.git
synced 2024-12-21 04:32:01 +03:00
35 lines
1014 B
TypeScript
35 lines
1014 B
TypeScript
// Loaded from https://deno.land/x/ramda@v0.27.2/source/mergeRight.js
|
|
|
|
|
|
import _objectAssign from './internal/_objectAssign.js';
|
|
import _curry2 from './internal/_curry2.js';
|
|
|
|
|
|
/**
|
|
* Create a new object with the own properties of the first object merged with
|
|
* the own properties of the second object. If a key exists in both objects,
|
|
* the value from the second object will be used.
|
|
*
|
|
* @func
|
|
* @memberOf R
|
|
* @since v0.26.0
|
|
* @category Object
|
|
* @sig {k: v} -> {k: v} -> {k: v}
|
|
* @param {Object} l
|
|
* @param {Object} r
|
|
* @return {Object}
|
|
* @see R.mergeLeft, R.mergeDeepRight, R.mergeWith, R.mergeWithKey
|
|
* @example
|
|
*
|
|
* R.mergeRight({ 'name': 'fred', 'age': 10 }, { 'age': 40 });
|
|
* //=> { 'name': 'fred', 'age': 40 }
|
|
*
|
|
* const withDefaults = R.mergeRight({x: 0, y: 0});
|
|
* withDefaults({y: 2}); //=> {x: 0, y: 2}
|
|
* @symb R.mergeRight(a, b) = {...a, ...b}
|
|
*/
|
|
var mergeRight = _curry2(function mergeRight(l, r) {
|
|
return _objectAssign({}, l, r);
|
|
});
|
|
export default mergeRight;
|