(len = 5)
| 373 | return debounced; |
| 374 | }, |
| 375 | randomString(len = 5) { |
| 376 | return Math.random().toString(36).substr(-len); |
| 377 | }, |
| 378 | createAndDownloadFile(fileName, content) { |
| 379 | const aTag = document.createElement('a'); |
| 380 | const blob = new Blob([content]); |
no outgoing calls
no test coverage detected