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