Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 | 8x 8x 2x 2x | import { purry } from './purry';
/**
* Merges two objects. The same as `Object.assign`.
* `b` object will override properties of `a`.
* @param a the first object
* @param b the second object
* @signature
* P.merge(a, b)
* @example
* P.merge({ x: 1, y: 2 }, { y: 10, z: 2 }) // => { x: 1, y: 10, z: 2 }
* @data_first
* @category Object
*/
export function merge<A, B>(a: A, b: B): A & B;
/**
* Merges two objects. The same as `Object.assign`. `b` object will override properties of `a`.
* @param b the second object
* @signature
* P.merge(b)(a)
* @example
* P.merge({ y: 10, z: 2 })({ x: 1, y: 2 }) // => { x: 1, y: 10, z: 2 }
* @data_last
* @category Object
*/
export function merge<A, B>(b: B): (a: A) => A & B;
export function merge() {
return purry(_merge, arguments);
}
function _merge<A, B>(a: A, b: B) {
// tslint:disable-next-line:prefer-object-spread
return Object.assign({}, a, b);
}
|