From 274eaa2e47d5d27b6bed05ef195c20920b0fb8ff Mon Sep 17 00:00:00 2001 From: J Guthrie Date: Tue, 22 Jan 2019 14:39:21 +0000 Subject: [PATCH] Fix eslint issue --- modules/actions/join.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/actions/join.js b/modules/actions/join.js index e48f10b4c..296b6e6f5 100644 --- a/modules/actions/join.js +++ b/modules/actions/join.js @@ -89,7 +89,7 @@ export function actionJoin(ids) { if (_intersection( joined[0].nodes.map(function(n) { return n.loc.toString(); }), intersections.map(function(n) { return n.toString(); }) - ).length != intersections.length) return 'paths_intersect'; + ).length !== intersections.length) return 'paths_intersect'; } }