Created
August 13, 2015 11:43
-
-
Save alvarotrigo/204613cbf10ab34cfda8 to your computer and use it in GitHub Desktop.
This file contains 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 data ={}; | |
var self ={}; | |
for(var key in data) { | |
if(!self.hasOwnProperty(key)) { | |
self[key] = data[key]; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment