jj-fast-utils
Version:
π FE utils for anyone !
8 lines β’ 354 B
JavaScript
/**
* 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