UNPKG
@notlekmelo/gerar-boletos
Version:
latest (1.5.11)
1.5.11
1.5.9
1.5.8
1.5.7
1.5.6
1.5.5
1.5.4
1.5.3
1.5.2
1.5.1
1.5.0
1.4.5
Gerar boletos para vários bancos
github.com/Romulosanttos/gerar-boletos
notlekmelo/gerar-boletos
@notlekmelo/gerar-boletos
/
lib
/
utils
/
object-utils.js
8 lines
(6 loc)
•
212 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;