(base64)
| 265 | }, |
| 266 | |
| 267 | _base64ToArrayBuffer(base64) { |
| 268 | const binaryString = atob(base64); |
| 269 | const len = binaryString.length; |
| 270 | const bytes = new Uint8Array(len); |
| 271 | for (let i = 0; i < len; i++) bytes[i] = binaryString.charCodeAt(i); |
| 272 | return bytes.buffer; |
| 273 | }, |
| 274 | |
| 275 | _cleanupLocalStorage() { |
| 276 | try { |
nothing calls this directly
no outgoing calls
no test coverage detected