deno_std
deno_std copied to clipboard
encodeBase64/decodeBase64 seems to be inefficient
These function use atob and btoa internally and they oom easily with large strings
Maybe instead they should use node:buffer (Buffer.from(i).toString("base64") Buffer.from(i,"base64"))