2023-07-27 07:31:52 +02:00
|
|
|
/*
|
|
|
|
* SPDX-FileCopyrightText: syuilo and other misskey contributors
|
|
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
*/
|
|
|
|
|
2022-02-27 03:07:39 +01:00
|
|
|
import cd from 'content-disposition';
|
2019-03-18 07:23:45 +01:00
|
|
|
|
|
|
|
export function contentDisposition(type: 'inline' | 'attachment', filename: string): string {
|
|
|
|
const fallback = filename.replace(/[^\w.-]/g, '_');
|
|
|
|
return cd(filename, { type, fallback });
|
|
|
|
}
|