UNPKG

detect-features

Version:

Detect and report browser and hardware features.

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