blob: 37f893766d15458b4ad7628268dc47693960a4d7 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
|
const os = require("node:os");
/**
* Get the system info
*/
exports.get_sysinfo = function getSysinfo() {
return `OS: ${os.type()}
Arch: ${os.arch()}
User: ${process.env["USER"]}`
}
|