mirror of
https://activitypub.software/TransFem-org/Sharkey.git
synced 2024-11-16 16:57:14 +01:00
c2eec272e6
* Content-Disposition in ObjectStrage * encode filename
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 });
|
|
}
|