2023-07-27 07:31:52 +02:00
|
|
|
/*
|
|
|
|
* SPDX-FileCopyrightText: syuilo and other misskey contributors
|
|
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
*/
|
|
|
|
|
2023-07-07 06:44:31 +02:00
|
|
|
let isWebpSupportedCache: boolean | undefined;
|
|
|
|
export function isWebpSupported() {
|
|
|
|
if (isWebpSupportedCache === undefined) {
|
|
|
|
const canvas = document.createElement('canvas');
|
|
|
|
canvas.width = 1;
|
|
|
|
canvas.height = 1;
|
|
|
|
isWebpSupportedCache = canvas.toDataURL('image/webp').startsWith('data:image/webp');
|
|
|
|
}
|
|
|
|
return isWebpSupportedCache;
|
|
|
|
}
|