(data)
| 465 | |
| 466 | |
| 467 | function dataToBase64(data) { |
| 468 | return btoa(String.fromCharCode.apply(null, new Uint8Array(data))); |
| 469 | } |
| 470 | |
| 471 | function dataToBase64TD(data) { |
| 472 | return btoa(new TextDecoder('utf8').decode(data)); |
no outgoing calls
no test coverage detected