/[sudobot]/trunk/docs/hooks/usePlatform.ts
ViewVC logotype

Annotation of /trunk/docs/hooks/usePlatform.ts

Parent Directory Parent Directory | Revision Log Revision Log


Revision 575 - (hide annotations)
Mon Jul 29 17:59:26 2024 UTC (8 months ago) by rakinar2
File MIME type: application/typescript
File size: 294 byte(s)
chore: add trunk
1 rakinar2 575 "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