python-gallery/gallery/static/js/webp.js
2023-04-09 00:41:14 +00:00

11 lines
262 B
JavaScript

function checkWebpSupport() {
var webpSupport = false;
try {
webpSupport = document.createElement('canvas').toDataURL('image/webp').indexOf('data:image/webp') === 0;
} catch (e) {
webpSupport = false;
}
return webpSupport;
}