UNPKG

@adonisinoda/gerar-boletos

Version:
7 lines (6 loc) 213 B
function merge(destination, source) { if (destination === undefined) destination = {}; if (source === undefined) source = {}; return Object.assign(destination, source); } module.exports.merge = merge;