Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions lib/readline.js
Original file line numberDiff line numberDiff line change
Expand Up@@ -32,7 +32,7 @@ const {
ERR_INVALID_OPT_VALUE
} = require('internal/errors').codes;
const { validateString } = require('internal/validators');
const { debug } = require('util');
const { inspect } = require('util');
const { emitExperimentalWarning } = require('internal/util');
const { Buffer } = require('buffer');
const EventEmitter = require('events');
Expand DownExpand Up@@ -484,7 +484,7 @@ Interface.prototype._tabComplete = function(lastKeypressWasTab) {
self.resume();

if (err) {
debug('tab completion error %j', err);
Comment thread
gengjiawen marked this conversation as resolved.
Outdated
self._writeToOutput(`tab completion error ${inspect(err)}`);
return;
}

Expand Down