mirror of
https://github.com/shimataro/ssh-key-action.git
synced 2025-06-19 22:52:10 +10:00
15 lines
338 B
JavaScript
15 lines
338 B
JavaScript
module.exports = getUserAgentNode
|
|
|
|
const osName = require('os-name')
|
|
|
|
function getUserAgentNode () {
|
|
try {
|
|
return `Node.js/${process.version.substr(1)} (${osName()}; ${process.arch})`
|
|
} catch (error) {
|
|
if (/wmic os get Caption/.test(error.message)) {
|
|
return 'Windows <version undetectable>'
|
|
}
|
|
|
|
throw error
|
|
}
|
|
}
|