1
0
mirror of https://github.com/MisskeyIO/misskey synced 2024-12-20 01:28:52 +09:00
MisskeyIO/src/misc/content-disposition.ts
MeiMei c2eec272e6 Content-Disposition in ObjectStrage (#4524)
* Content-Disposition in ObjectStrage

* encode filename
2019-03-18 15:23:45 +09:00

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 });
}