backoffice/node_modules/util-extend
root ab9f8bb658 first commit 2020-02-06 10:09:39 +00:00
..
LICENSE first commit 2020-02-06 10:09:39 +00:00
README.md first commit 2020-02-06 10:09:39 +00:00
extend.js first commit 2020-02-06 10:09:39 +00:00
package.json first commit 2020-02-06 10:09:39 +00:00
test.js first commit 2020-02-06 10:09:39 +00:00

README.md

util-extend

The Node object extending function that Node uses for Node!

Usage

var extend = require('util-extend');
function functionThatTakesOptions(options) {
  var options = extend(defaults, options);
  // now any unset options are set to the defaults.
}