source:
trip-planner-front/node_modules/form-data/lib/populate.js@
ceaed42
Last change on this file since ceaed42 was 6a3a178, checked in by , 3 years ago | |
---|---|
|
|
File size: 177 bytes |
Rev | Line | |
---|---|---|
[6a3a178] | 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.