Skip to content

Instantly share code, notes, and snippets.

@mdarse
Forked from Raynos/clone.js
Created August 2, 2013 10:13
Show Gist options
  • Save mdarse/6138851 to your computer and use it in GitHub Desktop.
Save mdarse/6138851 to your computer and use it in GitHub Desktop.
function clone(o) {
return Object.create(
Object.getPrototypeOf(o),
Object.getOwnPropertyDescriptors(o)
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment