Extracts GPU information from the browser
npm i gpu-detect-js
getGPU():GPUInfo
interface GPUInfo { vendor: string | undefined; model: string | undefined }
import { GPUDetect } from 'gpu-detect-js';
const gpuInfo = GPUDetect.getGPU();
console.log(gpuInfo);
// { vendor: "AMD", model: "Radeon R9 M295X" }