Add typescript-language-server
This commit is contained in:
parent
dcb665cde4
commit
60d7eec53f
2 changed files with 12 additions and 10 deletions
guangdong
|
@ -15,17 +15,17 @@
|
|||
* @param {string} fileName - The filename to give the file
|
||||
*/
|
||||
function downloadString(text, fileType, fileName) {
|
||||
var blob = new Blob([text], { type: fileType });
|
||||
var blob = new Blob([text], { type: fileType });
|
||||
|
||||
var a = document.createElement('a');
|
||||
a.download = fileName;
|
||||
a.href = URL.createObjectURL(blob);
|
||||
a.dataset.downloadurl = [fileType, a.download, a.href].join(':');
|
||||
a.style.display = "none";
|
||||
document.body.appendChild(a);
|
||||
a.click();
|
||||
document.body.removeChild(a);
|
||||
setTimeout(function() { URL.revokeObjectURL(a.href); }, 1500);
|
||||
var a = document.createElement('a');
|
||||
a.download = fileName;
|
||||
a.href = URL.createObjectURL(blob);
|
||||
a.dataset.downloadurl = [fileType, a.download, a.href].join(':');
|
||||
a.style.display = "none";
|
||||
document.body.appendChild(a);
|
||||
a.click();
|
||||
document.body.removeChild(a);
|
||||
setTimeout(function() { URL.revokeObjectURL(a.href); }, 1500);
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue