mirror of
https://git.mirrors.martin98.com/https://github.com/actions/setup-python
synced 2025-08-02 20:30:41 +08:00
11 lines
177 B
JavaScript
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;
|
|
};
|