Skip to content

Instantly share code, notes, and snippets.

@DavidWittman
Created November 23, 2011 21:46
Show Gist options
  • Save DavidWittman/1390013 to your computer and use it in GitHub Desktop.
Save DavidWittman/1390013 to your computer and use it in GitHub Desktop.
Javascript Mixin
function mixInto(object, mixIn) {
forEachIn(mixIn, function(name, value) {
object[name] = value;
});
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment