Skip to content

Instantly share code, notes, and snippets.

@zchrykng
Created July 10, 2014 19:49
Show Gist options
  • Save zchrykng/ba822557e16f757ec611 to your computer and use it in GitHub Desktop.
Save zchrykng/ba822557e16f757ec611 to your computer and use it in GitHub Desktop.
module.exports = function (o) {
'use strict';
var prop,
copy = Object.create(o);
for (prop in o) {
if (o.hasOwnProperty(prop)) {
copy[prop] = o[prop];
}
}
return copy;
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment