mirror of
https://github.com/ourongxing/newsnow.git
synced 2025-01-19 03:09:14 +08:00
5 lines
269 B
TypeScript
5 lines
269 B
TypeScript
export function proxyPicture(url: string, type: "encodeURIComponent" | "encodeBase64URL" = "encodeURIComponent") {
|
|
const encoded = type === "encodeBase64URL" ? encodeBase64URL(url) : encodeURIComponent(url)
|
|
return `/api/proxy/img.png?type=${type}&url=${encoded}`
|
|
}
|