UNPKG

outils

Version:

前端业务代码工具库

10 lines (9 loc) 261 B
/** * * @desc 判断浏览器是否支持webP格式图片 * @return {Boolean} */ function isSupportWebP() { return !![].map && document.createElement('canvas').toDataURL('image/webp').indexOf('data:image/webp') == 0; } module.exports = isSupportWebP;