UNPKG

detect-features

Version:

Detect and report browser and hardware features.

9 lines (7 loc) 287 B
export default (() => { const canvas = document.createElement('canvas'); const gl = canvas.getContext('webgl') || canvas.getContext('experimental-webgl'); /* eslint-disable no-undef */ return (gl && gl instanceof WebGLRenderingContext) || false; /* eslint-enable no-undef */ })();