Skip to content

Commit cca4ca1

Browse files
authored
style: fix indentation
Signed-off-by: Athan <[email protected]>
1 parent 568fd5e commit cca4ca1

File tree

1 file changed

+6
-6
lines changed
  • lib/node_modules/@stdlib/utils/async/while/lib

1 file changed

+6
-6
lines changed

lib/node_modules/@stdlib/utils/async/while/lib/main.js

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -111,12 +111,12 @@ function whileAsync( predicate, fcn, done, thisArg ) {
111111
idx += 1;
112112

113113
// Cache the most recent results...
114-
if ( arguments.length > 1 ) {
115-
args = [];
116-
for ( i = 1; i < arguments.length; i++ ) {
117-
args.push( arguments[ i ] );
118-
}
119-
}
114+
if ( arguments.length > 1 ) {
115+
args = [];
116+
for ( i = 1; i < arguments.length; i++ ) {
117+
args.push( arguments[ i ] );
118+
}
119+
}
120120

121121
// Run the test condition:
122122
predicate( idx, onPredicate );

0 commit comments

Comments
 (0)