![]() | Name | Last modified | Size | Description |
---|---|---|---|---|
![]() | Parent Directory | - | ||
![]() | HISTORY.md | 2 years ago | 363 | |
![]() | LICENSE | 2 years ago | 1.1K | f0d2fc9 test post-receive hook [كارل مبارك] |
![]() | README.md | 2 years ago | 1.2K | 15de0e0 styling, texts [كارل مبارك] |
![]() | index.js | 2 years ago | 1.2K | 15de0e0 styling, texts [كارل مبارك] |
![]() | package.json | 2 years ago | 931 | 120707f added node version q18.16 to dependincies [كارل مبارك] |
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.