UNPKG
criar-boletos
Version:
latest (1.1.3)
1.1.3
1.1.2
1.1.1
1.1.0
1.0.2
1.0.1
1.0.0
Gerar boletos para vários bancos
vitorric/criar-boletos
criar-boletos
/
lib
/
utils
/
object-utils.js
8 lines
(6 loc)
•
205 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
function
merge
(
destination, source
) {
if
(destination ===
undefined
) destination = {};
if
(source ===
undefined
) source = {};
return
Object
.
assign
(destination, source); }
module
.
exports
.
merge
= merge;