2023-01-13 04:40:33 +00:00
|
|
|
import cd from "content-disposition";
|
2019-03-18 06:23:45 +00:00
|
|
|
|
2023-01-13 04:40:33 +00:00
|
|
|
export function contentDisposition(
|
|
|
|
type: "inline" | "attachment",
|
|
|
|
filename: string,
|
|
|
|
): string {
|
|
|
|
const fallback = filename.replace(/[^\w.-]/g, "_");
|
2019-03-18 06:23:45 +00:00
|
|
|
return cd(filename, { type, fallback });
|
|
|
|
}
|