git-svn-id: https://svn.libreccm.org/ccm/trunk@5722 8810af33-2d31-482b-a856-94f89814c4df |
||
|---|---|---|
| .. | ||
| HISTORY.md | ||
| LICENSE | ||
| README.md | ||
| index.js | ||
| package.json | ||
README.md
Merge Descriptors
Merge objects using descriptors.
var thing = {
get name() {
return 'jon'
}
}
var animal = {
}
merge(animal, thing)
animal.name === 'jon'
API
merge(destination, source)
Redefines destination's descriptors with source's.
merge(destination, source, false)
Defines source's descriptors on destination if destination does not have
a descriptor by the same name.