Skip to content

Instantly share code, notes, and snippets.

@StickNitro
Last active July 17, 2018 12:22
Show Gist options
  • Save StickNitro/3e2b61743dd80c99fa98eef46d5136eb to your computer and use it in GitHub Desktop.
Save StickNitro/3e2b61743dd80c99fa98eef46d5136eb to your computer and use it in GitHub Desktop.
deepcopy
export function deepcopy<T = {}>(obj: T): T {
return <T>JSON.parse(JSON.stringify(obj));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment