@beetpx/beetpx
Version:
A TypeScript framework for pixel art browser games.
14 lines • 453 B
JavaScript
export class BrowserTypeDetector {
static detect(userAgent) {
const ua = userAgent?.toLowerCase() ?? "";
if (ua.includes("firefox")) {
return ua.includes("win64") ? "firefox_windows" : "firefox_other";
}
if (ua.includes("chrome"))
return "chromium";
if (ua.includes("safari"))
return "safari";
return "other";
}
}
//# sourceMappingURL=BrowserTypeDetector.js.map