(text: string, duration: number = 1.5)
| 140 | |
| 141 | |
| 142 | export function error_alert(text: string, duration: number = 1.5) { |
| 143 | Toastify({ |
| 144 | text: Mustache.escape(text), |
| 145 | duration: duration * 1000, |
| 146 | gravity: "top", |
| 147 | position: 'center', |
| 148 | backgroundColor: '#e53935', |
| 149 | }).showToast(); |
| 150 | } |
| 151 | |
| 152 | |
| 153 | // make File object to Blob |
no outgoing calls
no test coverage detected
searching dependent graphs…