mirror of
https://github.com/node-red/node-red.git
synced 2025-12-27 07:31:07 +01:00
10 lines
168 B
JavaScript
10 lines
168 B
JavaScript
const os = require('os')
|
|
|
|
module.exports = (_) => {
|
|
return {
|
|
'os.type': os.type(),
|
|
'os.release': os.release(),
|
|
'os.arch': os.arch()
|
|
}
|
|
}
|