Sergey 1f1f646341 init: create front/back apps | пре 2 година | |
---|---|---|
.. | ||
HISTORY.md | пре 2 година | |
LICENSE | пре 2 година | |
README.md | пре 2 година | |
index.js | пре 2 година | |
package.json | пре 2 година |
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.