UNPKG

jj-fast-utils

Version:
8 lines β€’ 354 B
/** * Check whether the current environment supports webp images. εˆ€ζ–­ε½“ε‰ηŽ―ε’ƒζ˜―ε¦ζ”―ζŒ webp ζ ΌεΌηš„ε›Ύη‰‡. * * @return {boolean} Result. η»“ζžœ. */ const isSupportWebp = () => document.createElement('canvas').toDataURL('image/webp').indexOf('data:image/webp') === 0; export default isSupportWebp; //# sourceMappingURL=isSupportWebp.js.map