Skip to content

Commit 5633c07

Browse files
committed
style: remove line breaks
1 parent 0ac5db0 commit 5633c07

File tree

1 file changed

+2
-4
lines changed
  • lib/node_modules/@stdlib/math/base/special/spence/lib

1 file changed

+2
-4
lines changed

lib/node_modules/@stdlib/math/base/special/spence/lib/main.js

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -101,12 +101,10 @@ function spence( x ) {
101101
if ( x > 1.5 ) {
102102
w = (1.0 / x) - 1.0;
103103
flg |= 2;
104-
}
105-
else if ( x < 0.5 ) {
104+
} else if ( x < 0.5 ) {
106105
w = -x;
107106
flg |= 1;
108-
}
109-
else {
107+
} else {
110108
w = x - 1.0;
111109
}
112110
y = -w * polyvalA( w ) / polyvalB( w );

0 commit comments

Comments
 (0)