Skip to content

Instantly share code, notes, and snippets.

@ethernet8023
Created May 16, 2017 19:54
Show Gist options
  • Select an option

  • Save ethernet8023/ff5cdb93c992ac50214742e2a764e4a5 to your computer and use it in GitHub Desktop.

Select an option

Save ethernet8023/ff5cdb93c992ac50214742e2a764e4a5 to your computer and use it in GitHub Desktop.
function config(obj, opts) {
Object.keys(opts).forEach(opt => {
obj[`set${opt.charAt(0).toUpperCase() + opt.slice(1)}`](opts[opt]);
});
return obj;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment