mirror of
https://github.com/misskey-dev/misskey.git
synced 2025-04-19 16:22:44 +09:00
7 lines
230 B
TypeScript
7 lines
230 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 });
|
|
}
|