Newer
Older
vmk-demo-bot / frontend / node_modules / default-resolution / node-version.js
@eugene-sukhodolskiy eugene-sukhodolskiy 17 days ago 227 bytes init
'use strict';

var match = process.version.match(/v(\d+)\.(\d+)\.(\d+)/);
var nodeVersion = {
  major: parseInt(match[1], 10),
  minor: parseInt(match[2], 10),
  patch: parseInt(match[3], 10),
};

module.exports = nodeVersion;