/[sudobot]/branches/7.x/docs/hooks/usePlatform.ts
ViewVC logotype

Annotation of /branches/7.x/docs/hooks/usePlatform.ts

Parent Directory Parent Directory | Revision Log Revision Log


Revision 577 - (hide annotations)
Mon Jul 29 18:52:37 2024 UTC (8 months ago) by rakinar2
File MIME type: application/typescript
File size: 294 byte(s)
chore: add old version archive branches (2.x to 9.x-dev)
1 rakinar2 577 "use client";
2    
3     export default function usePlatform() {
4     if (typeof navigator === "undefined") {
5     return "darwin";
6     }
7    
8     return navigator.userAgent.includes("Macintosh")
9     ? "darwin"
10     : navigator.userAgent.includes("Windows")
11     ? "windows"
12     : "linux";
13     }

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26