source:
trip-planner-front/node_modules/form-data/lib/populate.js@
6a80231
Last change on this file since 6a80231 was 6a3a178, checked in by , 3 years ago | |
---|---|
|
|
File size: 177 bytes |
Line | |
---|---|
1 | // populates missing values |
2 | module.exports = function(dst, src) { |
3 | |
4 | Object.keys(src).forEach(function(prop) |
5 | { |
6 | dst[prop] = dst[prop] || src[prop]; |
7 | }); |
8 | |
9 | return dst; |
10 | }; |
Note:
See TracBrowser
for help on using the repository browser.