fix a couple more lint warnings

This commit is contained in:
wearrrrr 2024-10-10 19:45:45 -05:00
parent c75f243866
commit f6928206f4
3 changed files with 5 additions and 5 deletions

View file

@ -270,7 +270,7 @@ export function rewriteSrcset(srcset: string, meta: URLMeta) {
return rewrittenUrls.join("");
}
function base64ToBytes(base64) {
function _base64ToBytes(base64) {
const binString = atob(base64);
return Uint8Array.from(binString, (m) => m.codePointAt(0));