Skip to content

Commit de9083b

Browse files
repl: fix ESLint errors in repl module
1 parent edb184f commit de9083b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/repl.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -759,15 +759,15 @@ class REPLServer extends Interface {
759759

760760
// All the parameters in the object are defining the "input" param of the
761761
// InterfaceConstructor.
762-
ReflectApply(Interface, this, [{
762+
ReflectApply(Interface, this, {
763763
input: options.input,
764764
output: options.output,
765765
completer: options.completer || completer,
766766
terminal: options.terminal,
767767
historySize: options.historySize,
768768
prompt,
769769
multilinePrompt: options.multilinePrompt,
770-
}]);
770+
});
771771

772772
self.resetContext();
773773

0 commit comments

Comments
 (0)