mirror of
https://github.com/paricafe/misskey.git
synced 2024-11-25 10:46:44 -06:00
0e4a111f81
Resolve #7779
6 lines
235 B
TypeScript
6 lines
235 B
TypeScript
const cd = require('content-disposition');
|
|
|
|
export function contentDisposition(type: 'inline' | 'attachment', filename: string): string {
|
|
const fallback = filename.replace(/[^\w.-]/g, '_');
|
|
return cd(filename, { type, fallback });
|
|
}
|