mirror of
https://iceshrimp.dev/crimekillz/iceshrimp-161sh.git
synced 2024-11-24 21:19:07 +01:00
10 lines
235 B
TypeScript
10 lines
235 B
TypeScript
import cd from "content-disposition";
|
|
|
|
export function contentDisposition(
|
|
type: "inline" | "attachment",
|
|
filename: string,
|
|
): string {
|
|
const fallback = filename.replace(/[^\w.-]/g, "_");
|
|
return cd(filename, { type, fallback });
|
|
}
|