Created
May 21, 2015 14:22
-
-
Save aleszu/863e3f723dc9bdaddd14 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
function population(d) { | |
d.all = +d.all; | |
d.male = +d.male; | |
d.female = +d.female; | |
return d; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment