Skip to content

Commit b146e7d

Browse files
remove unnecessary async
1 parent 85b201b commit b146e7d

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

lib/repl.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1336,7 +1336,7 @@ function completeFSFunctions(match) {
13361336
// getter code. To avoid potential triggering side-effects with getters the completion
13371337
// logic is skipped when getters or proxies are involved in the expression.
13381338
// (see: https://github.com/nodejs/node/issues/57829).
1339-
async function complete(line, callback) {
1339+
function complete(line, callback) {
13401340
// List of completion lists, one for each inheritance "level"
13411341
let completionGroups = [];
13421342
let completeOn, group;

0 commit comments

Comments
 (0)