const download = filename, text) => {
let element = document.createElement('a');
element.setAttribute('href', 'somelink' + text);
element.setAttribute('download', filename);
document.body.appendChild(element);
element.click();
document.body.removeChild(element);
}