Skip to content

Instantly share code, notes, and snippets.

@ericelliott
Created October 23, 2012 01:02
Show Gist options
  • Save ericelliott/3936029 to your computer and use it in GitHub Desktop.
Save ericelliott/3936029 to your computer and use it in GitHub Desktop.
copy
var copy = function copy(source) {
if (source === undefined) { return undefined; }
return JSON.parse(JSON.stringify(source));
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment