Files
lanyard-profile-readme/src/toBase64.ts
callumok2004 b169bbc15d 🌟 Code Cleanup
2021-06-21 03:43:22 +01:00

3 lines
139 B
TypeScript

import imageToBase64 from "image-to-base64";
export const encodeBase64 = async (url: string): Promise<string> => await imageToBase64(url);