UNPKG

ice.fo.utils

Version:

13 lines (9 loc) 400 B
export default function downloadString(text, filename = `${+new Date()}.txt`) { const element = document.createElement('a'); element.setAttribute('href', `data:text/plain;charset=utf-8,${encodeURIComponent(text)}`); element.setAttribute('download', filename); element.style.display = 'none'; document.body.appendChild(element); element.click(); document.body.removeChild(element); }