Skip to content

Commit 37f384b

Browse files
authored
Update accessors.js
Signed-off-by: Kaushikgtm <[email protected]>
1 parent ca5a80e commit 37f384b

File tree

1 file changed

+2
-3
lines changed
  • lib/node_modules/@stdlib/stats/base/nanminabs/lib

1 file changed

+2
-3
lines changed

lib/node_modules/@stdlib/stats/base/nanminabs/lib/accessors.js

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@
1515
* See the License for the specific language governing permissions and
1616
* limitations under the License.
1717
*/
18-
1918
'use strict';
2019

2120
// MODULES //
@@ -57,7 +56,8 @@ function nanminabs( N, x, strideX, offsetX ) {
5756
get = x.accessors[ 0 ];
5857

5958
if ( N === 1 || strideX === 0 ) {
60-
return ( ( get ? abs( get( xbuf, offsetX ) ) : abs( xbuf[ offsetX ] ) ) );
59+
return ( ( get ? abs( get( xbuf, offsetX ) )
60+
: abs( xbuf[ offsetX ] ) ) );
6161
}
6262

6363
ix = offsetX;
@@ -85,7 +85,6 @@ function nanminabs( N, x, strideX, offsetX ) {
8585
}
8686
}
8787
return min;
88-
8988
}
9089

9190
// EXPORTS //

0 commit comments

Comments
 (0)