JFIFxxC      C  " }!1AQa"q2#BR$3br %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz w!1AQaq"2B #3Rbr{ gilour

File "download-file-from-url.ts"

Full Path: /home/markqprx/iniasli.pro/client/uploads/utils/download-file-from-url.ts
File size: 251 bytes
MIME-type: text/plain
Charset: utf-8

export function downloadFileFromUrl(url: string, name?: string) {
  const link = document.createElement('a');
  link.href = url;
  if (name) link.download = name;
  document.body.appendChild(link);
  link.click();
  document.body.removeChild(link);
}