`;
const elem = document.createElement('textarea');
// Avoid scrolling to bottom
elem.style.top = "0";
elem.style.left = "0";
elem.style.position = "fixed";
elem.value = multiStr;
document.body.appendChild(elem);
elem.select();
document.execCommand('copy');
document.body.removeChild(elem);
callerST();
}