Skip to content

Instantly share code, notes, and snippets.

@guzmanfg
Last active September 14, 2016 11:36
Show Gist options
  • Save guzmanfg/dcb4c7ceab62aa8deeeb4602bc5a659d to your computer and use it in GitHub Desktop.
Save guzmanfg/dcb4c7ceab62aa8deeeb4602bc5a659d to your computer and use it in GitHub Desktop.
Clone function
function clone(obj) {
var ctr = Object.getPrototypeOf(obj).constructor;
return Object.assign(new ctr(), obj);
}
export function clone<T>(obj:T):T {
let ctr = Object.getPrototypeOf(obj).constructor;
return Object.assign(new ctr(), obj);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment