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

package.lib.util.extend.js Maven / Gradle / Ivy

The newest version!
module.exports = function (base, opts) {
  var keys = Object.keys(opts)
  for (var i = 0; i < keys.length; ++i) {
    base[keys[i]] = opts[keys[i]]
  }
  return base
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy