mirror of
https://github.com/Derpy-Leggies/OnlyLegs.git
synced 2025-06-29 11:36:16 +00:00
10 lines
267 B
JavaScript
10 lines
267 B
JavaScript
async function checkWebpSupport() {
|
|
var webpSupport = false;
|
|
try {
|
|
webpSupport = document.createElement('canvas').toDataURL('image/webp').indexOf('data:image/webp') == 0;
|
|
} catch (e) {
|
|
webpSupport = false;
|
|
}
|
|
|
|
return webpSupport;
|
|
}
|