From 3ab7a16af9dca7350ddec6fa7046d7def9057230 Mon Sep 17 00:00:00 2001 From: xzyfer Date: Mon, 23 Apr 2018 23:11:25 +1000 Subject: [PATCH] Fix Node 10 check --- lib/extensions.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/extensions.js b/lib/extensions.js index 4c410f5d5..948f4604b 100644 --- a/lib/extensions.js +++ b/lib/extensions.js @@ -75,7 +75,7 @@ function getHumanNodeVersion(abi) { case 53: return 'Electron 1.6.x'; case 57: return 'Node.js 8.x'; case 59: return 'Node.js 9.x'; - case 63: return 'Node.js 10.x'; + case 64: return 'Node.js 10.x'; default: return false; } }