We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
process.versions.node
1 parent 8e4a465 commit 83f6c31Copy full SHA for 83f6c31
lib/core.js
@@ -1,4 +1,4 @@
1
-var current = process.versions.node.split('.');
+var current = process.versions && process.versions.node && process.versions.node.split('.') || [];
2
3
function versionIncluded(version) {
4
if (version === '*') return true;
0 commit comments