1
0
mirror of https://github.com/misskey-dev/misskey synced 2024-12-20 09:38:29 +09:00
misskey/src/misc/detect-url-mime.ts

16 lines
362 B
TypeScript
Raw Normal View History

import { createTemp } from './create-temp';
import { downloadUrl } from './donwload-url';
import { detectType } from './get-file-info';
export async function detectUrlMime(url: string) {
const [path, cleanup] = await createTemp();
try {
await downloadUrl(url, path);
const { mime } = await detectType(path);
return mime;
} finally {
cleanup();
}
}