UNPKG
npm-couple
Version:
latest (1.0.4)
1.0.4
1.0.3
1.0.1
A library to couple two objects.
www.github.com/ryansmith94/couple
ryansmith94/couple
npm-couple
/
docs
/
merge.md
22 lines
(18 loc)
•
195 B
Markdown
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# Merge
```coffee merge =
require
(
'couple'
).merge
merge
({
a
:
'a one'
b
:
'b one'
})({
b
:
'b two'
c
:
'c two'
})
###
Returns `{ a:
'a one'
b:
'b one'
c:
'c two'
}`.
###
```