Skip to content

Instantly share code, notes, and snippets.

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

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

Select an option

Save westc/fec8406b1f8c62cc31f6 to your computer and use it in GitHub Desktop.
Read file as text in Chrome app.
function readFileAsText(fileEntry, callback) {
fileEntry.file(function(file) {
var reader = new FileReader();
reader.onload = function(e) {
callback(e.target.result);
};
reader.readAsText(file);
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment