Skip to content

Instantly share code, notes, and snippets.

@technovangelist
Created February 10, 2012 10:21
Show Gist options
  • Save technovangelist/1788541 to your computer and use it in GitHub Desktop.
Save technovangelist/1788541 to your computer and use it in GitHub Desktop.
Convert To CSV CS
ConvertToCSV = (objArray,name) ->
array = if typeof objArray isnt "object" then JSON.parse objArray else objArray
str = ""
for item,i in array
line = "#{array[i]["date"]}, #{commaReplace name}"
for index of array[i]
if index isnt "date"
line += ", #{commaReplace array[i][index]}"
str += line + "\r\n"
str
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment