Spaces:
Sleeping
Sleeping
File size: 263 Bytes
f23825d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
export const envString = (() => {
const os = navigator.userAgent.indexOf("Mac") != -1 ? "macOS" : "PC"
switch (os) {
case "macOS":
return {
cmdOrCtrl: "Cmd",
}
case "PC":
return {
cmdOrCtrl: "Ctrl",
}
}
})()
|