1
0
mirror of https://github.com/ragestudio/relic.git synced 2025-06-23 01:14:18 +00:00
2024-04-02 20:21:58 +02:00

17 lines
279 B
JavaScript

import os from "node:os"
export default () => {
if (os.platform() === "win32") {
return "windows"
}
if (os.platform() === "darwin") {
return "macos"
}
if (os.platform() === "linux") {
return "linux"
}
return os.platform()
}