From 0f41913b040f0e766e808b38201a00fa50039d3b Mon Sep 17 00:00:00 2001 From: Bryan Housel Date: Tue, 29 Jan 2019 14:04:36 -0500 Subject: [PATCH] pacify eslint --- modules/actions/reverse.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/actions/reverse.js b/modules/actions/reverse.js index fac6e9dfd..fc0d6faa3 100644 --- a/modules/actions/reverse.js +++ b/modules/actions/reverse.js @@ -66,7 +66,7 @@ export function actionReverse(wayID, options) { // Turn lanes are left/right to key (not way) direction - #5674 if (turn_lanes.test(key)) { - return value + return value; } else if (key === 'incline' && numeric.test(value)) { return value.replace(numeric, function(_, sign) { return sign === '-' ? '' : '-'; }); } else if (options && options.reverseOneway && key === 'oneway') {