Parent Directory
|
Revision Log
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 |