Created
August 28, 2013 08:04
-
-
Save jbspeakr/6363320 to your computer and use it in GitHub Desktop.
JS Howto: Transform list into CSV.
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 toCsv = function(list){ | |
var emptyString = ''; | |
return list + emptyString; | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment