root 3bf41bf355 update | hace 1 año | |
---|---|---|
.. | ||
LICENSE | hace 1 año | |
README.md | hace 1 año | |
index.js | hace 1 año | |
package.json | hace 1 año |
Turn node's process.version into something useful.
var nodeVersion = require('parse-node-version')(process.version);
console.log(nodeVersion.major, nodeVersion.minor, nodeVersion.patch);
Takes a node version string (usually process.version
) and returns an object with the major
, minor
, and patch
keys which will all be parsed digits.
MIT