blob: 9df7ed46882035e23fca04d5dae598f5c9369f84 (
plain)
1
2
3
4
5
6
|
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 });
}
|