Yann
test
f23825d
raw
history blame contribute delete
263 Bytes
export const envString = (() => {
const os = navigator.userAgent.indexOf("Mac") != -1 ? "macOS" : "PC"
switch (os) {
case "macOS":
return {
cmdOrCtrl: "Cmd",
}
case "PC":
return {
cmdOrCtrl: "Ctrl",
}
}
})()