Skip to content

Commit 637309f

Browse files
committed
refactor: remove unnecessary else
--- type: pre_push_report description: Results of running various checks prior to pushing changes. report: - task: run_javascript_examples status: na - task: run_c_examples status: na - task: run_cpp_examples status: na - task: run_javascript_readme_examples status: na - task: run_c_benchmarks status: na - task: run_cpp_benchmarks status: na - task: run_fortran_benchmarks status: na - task: run_javascript_benchmarks status: na - task: run_julia_benchmarks status: na - task: run_python_benchmarks status: na - task: run_r_benchmarks status: na - task: run_javascript_tests status: na ---
1 parent 860bd12 commit 637309f

File tree

1 file changed

+2
-1
lines changed
  • lib/node_modules/@stdlib/fft/base/fftpack/lib

1 file changed

+2
-1
lines changed

lib/node_modules/@stdlib/fft/base/fftpack/lib/radb2.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,8 @@ function radb2( ido, l1, cc, ch, wa1 ) {
100100
}
101101
if ( ido < 2 ) {
102102
return;
103-
} else if ( ido != 2 ) {
103+
}
104+
if ( ido !== 2 ) {
104105
idp2 = ido + 2;
105106
for ( k = 1; k <= l1; ++k ) {
106107
for ( i = 3; i <= ido; i += 2 ) {

0 commit comments

Comments
 (0)