python-gallery/onlylegs/static/js/webp.js

11 lines
262 B
JavaScript
Raw Normal View History

function checkWebpSupport() {
2023-04-12 15:30:54 +00:00
let webpSupport = false;
try {
webpSupport = document.createElement('canvas').toDataURL('image/webp').indexOf('data:image/webp') === 0;
} catch (e) {
webpSupport = false;
}
return webpSupport;
}