(dataURL,ending)
| 1077 | */ |
| 1078 | |
| 1079 | const downloadFile = function(dataURL,ending) { |
| 1080 | let a = document.createElement(`a`); |
| 1081 | a.setAttribute("href", dataURL); |
| 1082 | a.setAttribute("download", "downloadedSign" + ending); |
| 1083 | a.click(); |
| 1084 | a.remove(); |
| 1085 | } |
| 1086 | |
| 1087 | function getFile() { |
| 1088 | var screenshotTarget; |
no outgoing calls
no test coverage detected