const blobDownloadFile = (res, fileName) => { const blob = new Blob([res]) const a = document.createElement('a') const URL = window.URL || window.webkitURL const herf = URL.createObjectURL(blob) a.href = herf a.download = fileName document.body.appendChild(a) a.click() document.body.removeChild(a) window.URL.revokeObjectURL(herf) } export default blobDownloadFile