You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
function salvar(){
let texto = document.getElementById("texto").value;
let titulo = document.getElementById("titulo").value;
let blob = new Blob([texto],
{
type: "text/plain;charset=utf-8"
});
saveAs(blob, titulo + ".csv");
}
function salvar(){
let texto = document.getElementById("texto").value;
let titulo = document.getElementById("titulo").value;
let blob = new Blob([texto],
{
type: "text/plain;charset=utf-8"
});
saveAs(blob, titulo + ".csv");
}