Skip to content

Instantly share code, notes, and snippets.

@imrehg
Created January 24, 2013 03:59
Show Gist options
  • Save imrehg/4617525 to your computer and use it in GitHub Desktop.
Save imrehg/4617525 to your computer and use it in GitHub Desktop.
Temporary fix
var csv = '#Time(Unixtime),Frequency(nm),WavemeterTemperature(C)\n'; savedValues[chn].forEach(function(e) {
csv += e[0] + ',' + e[1] + ',' + e[2] + '\n';
}); var blob = new Blob([csv], {type: 'text/csv'}); var link = document.createElement('link'); link.href = window.URL.createObjectURL(blob); document.body.appendChild(link);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment