Simon Priet 9e2991e668 init
2021-09-05 22:53:58 +02:00

11 lines
177 B
JavaScript

// populates missing values
module.exports = function(dst, src) {
Object.keys(src).forEach(function(prop)
{
dst[prop] = dst[prop] || src[prop];
});
return dst;
};