All Downloads are FREE. Search and download functionalities are using the official Maven repository.

node_modules.smrf-native.node_modules.form-data.lib.populate.js Maven / Gradle / Ivy

There is a newer version: 1.4.0
Show newest version
// populates missing values
module.exports = function(dst, src) {

  Object.keys(src).forEach(function(prop)
  {
    dst[prop] = dst[prop] || src[prop];
  });

  return dst;
};




© 2015 - 2025 Weber Informatics LLC | Privacy Policy