arvin.torres e3ca5d94a7 Campanas de Paz para la Mujer | vor 5 Jahren | |
---|---|---|
.. | ||
HISTORY.md | vor 5 Jahren | |
LICENSE | vor 5 Jahren | |
README.md | vor 5 Jahren | |
index.js | vor 5 Jahren | |
package.json | vor 5 Jahren |
Merge objects using descriptors.
var thing = {
get name() {
return 'jon'
}
}
var animal = {
}
merge(animal, thing)
animal.name === 'jon'
Redefines destination
’s descriptors with source
’s.
Defines source
’s descriptors on destination
if destination
does not have
a descriptor by the same name.