isSupportWebP.js 261 B

12345678910
  1. /**
  2. *
  3. * @desc 判断浏览器是否支持webP格式图片
  4. * @return {Boolean}
  5. */
  6. function isSupportWebP() {
  7. return !![].map && document.createElement('canvas').toDataURL('image/webp').indexOf('data:image/webp') == 0;
  8. }
  9. module.exports = isSupportWebP;