Skip to content

Instantly share code, notes, and snippets.

View dustinpoissant's full-sized avatar

Dustin Poissant dustinpoissant

View GitHub Profile
@dustinpoissant
dustinpoissant / saveAs.func.js
Last active September 13, 2016 14:03
Saves text in a text file
function saveAs(text, filename){
var pom = document.createElement('a');
pom.setAttribute('href', 'data:text/plain;charset=urf-8,'+encodeURIComponent(text));
pom.setAttribute('download', filename);
pom.click();
};