Skip to content

Instantly share code, notes, and snippets.

View stevietelly's full-sized avatar
😀

Stephen Telian stevietelly

😀
View GitHub Profile
@clucle
clucle / save.js
Last active January 10, 2025 10:02
pure js save text and json object to file
function saveTextToFile() {
const saveText = "tmp";
// file setting
const text = saveText;
const name = "sample.json";
const type = "text/plain";
// create file
const a = document.createElement("a");