mirror of
https://github.com/wishthis/wishthis.git
synced 2026-01-09 23:58:32 -05:00
11 lines
227 B
JavaScript
11 lines
227 B
JavaScript
'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;
|