mirror of
https://github.com/ragestudio/relic.git
synced 2025-06-09 02:24:18 +00:00
17 lines
279 B
JavaScript
Executable File
17 lines
279 B
JavaScript
Executable File
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()
|
|
} |