summaryrefslogtreecommitdiff
path: root/lib/readline.js
diff options
context:
space:
mode:
authorRich Trott <rtrott@gmail.com>2017-07-05 09:21:40 -0700
committerRich Trott <rtrott@gmail.com>2017-07-07 13:18:19 -0700
commit0d22858d67f5f8f7959a55ceca23adafe12827d5 (patch)
tree9a0ff22b8b20243a59cf5ba6fed1f4eeb3755a7f /lib/readline.js
parent49d13a17b10b45b3d23e0fed41783769124f239c (diff)
downloadandroid-node-v8-0d22858d67f5f8f7959a55ceca23adafe12827d5.tar.gz
android-node-v8-0d22858d67f5f8f7959a55ceca23adafe12827d5.tar.bz2
android-node-v8-0d22858d67f5f8f7959a55ceca23adafe12827d5.zip
lib: remove excess indentation
In anticipation of stricter linting for indentation, remove instances of extra indentation that will be flagged by the new rules. PR-URL: https://github.com/nodejs/node/pull/14090 Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com> Reviewed-By: Tobias Nießen <tniessen@tnie.de> Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Diffstat (limited to 'lib/readline.js')
-rw-r--r--lib/readline.js8
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/readline.js b/lib/readline.js
index 00bbae758c..b38909a8e7 100644
--- a/lib/readline.js
+++ b/lib/readline.js
@@ -736,12 +736,12 @@ Interface.prototype._moveCursor = function(dx) {
var diffWidth;
if (diffCursor < 0) {
diffWidth = -getStringWidth(
- this.line.substring(this.cursor, oldcursor)
- );
+ this.line.substring(this.cursor, oldcursor)
+ );
} else if (diffCursor > 0) {
diffWidth = getStringWidth(
- this.line.substring(this.cursor, oldcursor)
- );
+ this.line.substring(this.cursor, oldcursor)
+ );
}
moveCursor(this.output, diffWidth, 0);
this.prevRows = newPos.rows;