Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.
Noelle 9399a942b5 first commit 4 anos atrás
..
HISTORY.md first commit 4 anos atrás
LICENSE first commit 4 anos atrás
README.md first commit 4 anos atrás
index.js first commit 4 anos atrás
package.json first commit 4 anos atrás

README.md

Merge Descriptors

NPM Version NPM Downloads Build Status Test Coverage

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.

License

MIT