mirror of
https://github.com/Derpy-Leggies/OnlyLegs.git
synced 2025-01-01 12:26:13 +00:00
11 lines
262 B
JavaScript
11 lines
262 B
JavaScript
function checkWebpSupport() {
|
|
let webpSupport = false;
|
|
try {
|
|
webpSupport = document.createElement('canvas').toDataURL('image/webp').indexOf('data:image/webp') === 0;
|
|
} catch (e) {
|
|
webpSupport = false;
|
|
}
|
|
|
|
return webpSupport;
|
|
}
|