mirror of
https://iceshrimp.dev/crimekillz/trashposs
synced 2024-11-24 09:49:05 +01:00
bd1f2ba732
* Content-Disposition in ObjectStrage * encode filename
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 });
|
|
}
|