summaryrefslogtreecommitdiff
path: root/lib/tty.js
diff options
context:
space:
mode:
authorRich Trott <rtrott@gmail.com>2015-12-23 01:15:44 -0800
committerRich Trott <rtrott@gmail.com>2015-12-25 13:05:23 -0800
commitfdeb862f2bc41d6d26e2fae8c588c4fc698e0cae (patch)
treeb7628d647532388b43a8c0aff786eb4af8ce0e2e /lib/tty.js
parent7d1d0b7aebfbebbb84bbbbf0a4878559ca8f3e24 (diff)
downloadandroid-node-v8-fdeb862f2bc41d6d26e2fae8c588c4fc698e0cae.tar.gz
android-node-v8-fdeb862f2bc41d6d26e2fae8c588c4fc698e0cae.tar.bz2
android-node-v8-fdeb862f2bc41d6d26e2fae8c588c4fc698e0cae.zip
lib: remove unused modules
Some files in `lib` were using `require` to load modules that were subsequently not used in the file. This removes those `require` statements. PR-URL: https://github.com/nodejs/node/pull/4396 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
Diffstat (limited to 'lib/tty.js')
-rw-r--r--lib/tty.js1
1 files changed, 0 insertions, 1 deletions
diff --git a/lib/tty.js b/lib/tty.js
index 7c4f80a482..72efcd078b 100644
--- a/lib/tty.js
+++ b/lib/tty.js
@@ -1,7 +1,6 @@
'use strict';
const util = require('util');
-const internalUtil = require('internal/util');
const net = require('net');
const TTY = process.binding('tty_wrap').TTY;
const isTTY = process.binding('tty_wrap').isTTY;