You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
497 B
20 lines
497 B
'use strict'; |
|
|
|
function parseNodeVersion(version) { |
|
var match = version.match(/^v(\d{1,2})\.(\d{1,2})\.(\d{1,2})(?:-([0-9A-Za-z-.]+))?(?:\+([0-9A-Za-z-.]+))?$/); // eslint-disable-line max-len |
|
if (!match) { |
|
throw new Error('Unable to parse: ' + version); |
|
} |
|
|
|
var res = { |
|
major: parseInt(match[1], 10), |
|
minor: parseInt(match[2], 10), |
|
patch: parseInt(match[3], 10), |
|
pre: match[4] || '', |
|
build: match[5] || '', |
|
}; |
|
|
|
return res; |
|
} |
|
|
|
module.exports = parseNodeVersion;
|
|
|