This repository has been archived on 2022-03-12. You can view files and clone it, but cannot push or open issues or pull requests.

21 lines
497 B
JavaScript
Raw Normal View History

2021-04-02 02:24:13 +03:00
'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;