Skip to content

Instantly share code, notes, and snippets.

@westc
Created December 1, 2014 14:19
Show Gist options
  • Select an option

  • Save westc/9eaf41b759f02a76807c to your computer and use it in GitHub Desktop.

Select an option

Save westc/9eaf41b759f02a76807c to your computer and use it in GitHub Desktop.
Write file as text in Chrome app.
function writeFileAsText(fileEntry, text, opt_callback) {
fileEntry.createWriter(function(writer) {
writer.onwriteend = opt_callback;
writer.write(new Blob([text], {type: 'text/plain'}));
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment