Created
September 30, 2014 19:29
-
-
Save hughfdjackson/9b6f1220434d4ac349ff to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
> 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