Skip to content

Instantly share code, notes, and snippets.

@mateuszkocz
Created July 20, 2013 12:49
Show Gist options
  • Save mateuszkocz/6044899 to your computer and use it in GitHub Desktop.
Save mateuszkocz/6044899 to your computer and use it in GitHub Desktop.
Extends object.
function extend( a, b ) {
for( var key in b ) {
if( b.hasOwnProperty( key ) ) {
a[key] = b[key];
}
};
return a;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment