UNPKG

@yookue/ts-lang-utils

Version:

Common lang utilities for typescript

11 lines 270 B
export function downloadByElement(url, fileName) { if (!url || !fileName) { return; } var link = document.createElement('a'); link.download = fileName; link.href = url; document.body.appendChild(link); link.click(); document.body.removeChild(link); }