UNPKG

pm4js

Version:

Process Mining for Javascript

9 lines 234 B
class DownloadUtility { static download(text, name, type) { var a = document.createElement("a"); var file = new Blob([text], {type: type}); a.href = URL.createObjectURL(file); a.download = name; a.click(); } }