Skip to content

Instantly share code, notes, and snippets.

@bultas
Last active August 29, 2015 14:11
Show Gist options
  • Save bultas/d506a076673ca53f52aa to your computer and use it in GitHub Desktop.
Save bultas/d506a076673ca53f52aa to your computer and use it in GitHub Desktop.
handy Merge Object function (great for React styles)
// https://speakerdeck.com/vjeux/react-css-in-js
function m() {
var res = {};
for (var i = 0; i < arguments.length; ++i) {
if (arguments[i]) {
Object.assign(res, arguments[i]);
}
}
return res;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment