Skip to content

Instantly share code, notes, and snippets.

@Torthu
Created June 11, 2014 07:57
Show Gist options
  • Select an option

  • Save Torthu/94b3b435f41a8db077c6 to your computer and use it in GitHub Desktop.

Select an option

Save Torthu/94b3b435f41a8db077c6 to your computer and use it in GitHub Desktop.
Simple deep clone
# Simple deep clone function
deepClone = (originalObject) ->
JSON.parse(JSON.stringify(originalObject))
clone = deepClone
a: 'a'
b:
c: 'c'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment