mirror of
https://github.com/misskey-dev/misskey.git
synced 2024-12-19 07:10:28 +01:00
7 lines
235 B
TypeScript
7 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 });
|
||
|
}
|