File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
lib/node_modules/@stdlib/repl/lib Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -161,8 +161,8 @@ function REPL( options ) {
161
161
opts . settings . autoDisableBracketedPasteOnExit = ( opts . settings . autoDisableBracketedPasteOnExit === void 0 ) ? opts . isTTY : opts . settings . autoDisableBracketedPasteOnExit ; // eslint-disable-line max-len
162
162
opts . settings . syntaxHighlighting = ( opts . settings . syntaxHighlighting === void 0 ) ? opts . isTTY : opts . settings . syntaxHighlighting ; // eslint-disable-line max-len
163
163
164
- // This is temparary because eager evaluation conflicting with the auto_close_pairs tests.
165
- if ( options && options . settings . eagerEvaluation !== void 0 ) {
164
+ // This is temparary because eager evaluation conflicting with the some tests.
165
+ if ( options && options . settings && options . settings . eagerEvaluation !== void 0 ) {
166
166
opts . settings . eagerEvaluation = options . settings . eagerEvaluation ;
167
167
}
168
168
else {
You can’t perform that action at this time.
0 commit comments