Your IP : 216.73.216.91


Current Path : /var/node/inatote/Inatote-Backend/node_modules/defaults/
Upload File :
Current File : /var/node/inatote/Inatote-Backend/node_modules/defaults/index.js

var clone = require('clone');

module.exports = function(options, defaults) {
  options = options || {};

  Object.keys(defaults).forEach(function(key) {
    if (typeof options[key] === 'undefined') {
      options[key] = clone(defaults[key]);
    }
  });

  return options;
};