Parent Directory
|
Revision Log
chore: add old version archive branches (2.x to 9.x-dev)
1 | "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 |