From dd98a48bb00d0ad9ddad69c02a0a18563171b376 Mon Sep 17 00:00:00 2001 From: Shubham Date: Tue, 13 Jan 2026 10:53:33 +0530 Subject: [PATCH] chore: fix JavaScript lint errors (issue #9715) --- .../repl/presentation/lib/commands/next.js | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/lib/node_modules/@stdlib/repl/presentation/lib/commands/next.js b/lib/node_modules/@stdlib/repl/presentation/lib/commands/next.js index 2f7380d0817d..c1f5ac29c7d3 100644 --- a/lib/node_modules/@stdlib/repl/presentation/lib/commands/next.js +++ b/lib/node_modules/@stdlib/repl/presentation/lib/commands/next.js @@ -37,15 +37,15 @@ function command( pres ) { */ function onCommand() { pres._repl.once( 'drain', onDrain ); // eslint-disable-line no-underscore-dangle + } - /** - * Callback invoked upon a `drain` event. - * - * @private - */ - function onDrain() { - pres.next().show(); - } + /** + * Callback invoked upon a `drain` event. + * + * @private + */ + function onDrain() { + pres.next().show(); } }