diff options
author | Rich Trott <rtrott@gmail.com> | 2015-12-23 01:15:44 -0800 |
---|---|---|
committer | Rich Trott <rtrott@gmail.com> | 2015-12-25 13:05:23 -0800 |
commit | fdeb862f2bc41d6d26e2fae8c588c4fc698e0cae (patch) | |
tree | b7628d647532388b43a8c0aff786eb4af8ce0e2e /lib/os.js | |
parent | 7d1d0b7aebfbebbb84bbbbf0a4878559ca8f3e24 (diff) | |
download | node-new-fdeb862f2bc41d6d26e2fae8c588c4fc698e0cae.tar.gz |
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/os.js')
-rw-r--r-- | lib/os.js | 1 |
1 files changed, 0 insertions, 1 deletions
@@ -1,7 +1,6 @@ 'use strict'; const binding = process.binding('os'); -const util = require('util'); const internalUtil = require('internal/util'); const isWindows = process.platform === 'win32'; |