Bypass Google Chrome’s 10 file limit with timeouts — To download files with JavaScript, simply create an anchor element, set href and download attributes, and click the element. Calling the following function will download an empty text file encoded in utf-8 named blank.txt. const downloadFileWithAnchor = () => {
const anchor = document.createElement("a");
anchor.href = "data:text/plain;charset=utf-8,"…