Skip to content

Instantly share code, notes, and snippets.

@rochnyak-d-i
Last active August 29, 2015 14:08
Show Gist options
  • Save rochnyak-d-i/900ee6f0ef070cf6fd30 to your computer and use it in GitHub Desktop.
Save rochnyak-d-i/900ee6f0ef070cf6fd30 to your computer and use it in GitHub Desktop.
JS расширение
function extend(parent, child) {
var i;
child = child || {};
for(i in parent) {
if(parent.hasOwnProperty(i)) {
child[i] = parent[i];
}
}
return child;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment