Skip to content

Instantly share code, notes, and snippets.

@hughfdjackson
Created September 30, 2014 19:29
Show Gist options
  • Save hughfdjackson/9b6f1220434d4ac349ff to your computer and use it in GitHub Desktop.
Save hughfdjackson/9b6f1220434d4ac349ff to your computer and use it in GitHub Desktop.
> var clone = _.partial(_.extend, {})
undefined
> clone({ x: 3, y: 3 })
Object { x: 3, y: 3 }
> clone({ x: 3 })
Object { x: 3, y: 3 }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment