mirror of
https://github.com/kunkunsh/kunkun-ext-imgur-upload.git
synced 2025-04-03 17:36:42 +00:00
17 lines
445 B
TypeScript
17 lines
445 B
TypeScript
function uint8ArrayToBase64(uint8Array: Uint8Array) {
|
|
return btoa(
|
|
Array.from(uint8Array)
|
|
.map((byte) => String.fromCharCode(byte))
|
|
.join("")
|
|
);
|
|
}
|
|
|
|
fetch(
|
|
"https://cf-assets.www.cloudflare.com/slt3lc6tev37/6ZH2Etm3LlFHTgmkjLmkxp/59ff240fb3ebdc7794ffaa6e1d69b7c2/osi_model_7_layers.png"
|
|
)
|
|
.then((response) => response.bytes())
|
|
.then((bytes) => {
|
|
console.log(bytes);
|
|
console.log(uint8ArrayToBase64(bytes));
|
|
});
|