@@ -23,9 +23,9 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">blas/e
2323 < div class ='clearfix '>
2424
2525 < div class ='fl pad1y space-right2 '>
26- < span class ="strong "> 98.01 % </ span >
26+ < span class ="strong "> 98.03 % </ span >
2727 < span class ="quiet "> Statements</ span >
28- < span class ='fraction '> 198/202 </ span >
28+ < span class ='fraction '> 200/204 </ span >
2929 </ div >
3030
3131
@@ -44,9 +44,9 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">blas/e
4444
4545
4646 < div class ='fl pad1y space-right2 '>
47- < span class ="strong "> 98.01 % </ span >
47+ < span class ="strong "> 98.03 % </ span >
4848 < span class ="quiet "> Lines</ span >
49- < span class ='fraction '> 198/202 </ span >
49+ < span class ='fraction '> 200/204 </ span >
5050 </ div >
5151
5252
@@ -265,7 +265,9 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">blas/e
265265< a name ='L200 '> </ a > < a href ='#L200 '> 200</ a >
266266< a name ='L201 '> </ a > < a href ='#L201 '> 201</ a >
267267< a name ='L202 '> </ a > < a href ='#L202 '> 202</ a >
268- < a name ='L203 '> </ a > < a href ='#L203 '> 203</ a > </ td > < td class ="line-coverage quiet "> < span class ="cline-any cline-yes "> 3x</ span >
268+ < a name ='L203 '> </ a > < a href ='#L203 '> 203</ a >
269+ < a name ='L204 '> </ a > < a href ='#L204 '> 204</ a >
270+ < a name ='L205 '> </ a > < a href ='#L205 '> 205</ a > </ td > < td class ="line-coverage quiet "> < span class ="cline-any cline-yes "> 3x</ span >
269271< span class ="cline-any cline-yes "> 3x</ span >
270272< span class ="cline-any cline-yes "> 3x</ span >
271273< span class ="cline-any cline-yes "> 3x</ span >
@@ -429,18 +431,20 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">blas/e
429431< span class ="cline-any cline-yes "> 52x</ span >
430432< span class ="cline-any cline-yes "> 52x</ span >
431433< span class ="cline-any cline-yes "> 233x</ span >
434+ < span class ="cline-any cline-yes "> 89x</ span >
432435< span class ="cline-any cline-yes "> 52x</ span >
433436< span class ="cline-any cline-yes "> 52x</ span >
434- < span class ="cline-any cline-yes "> 51x </ span >
435- < span class ="cline-any cline-yes "> 233x </ span >
437+ < span class ="cline-any cline-yes "> 37x </ span >
438+ < span class ="cline-any cline-yes "> 89x </ span >
436439< span class ="cline-any cline-yes "> 21x</ span >
437440< span class ="cline-any cline-yes "> 21x</ span >
438- < span class ="cline-any cline-yes "> 233x </ span >
441+ < span class ="cline-any cline-yes "> 89x </ span >
439442< span class ="cline-any cline-no "> </ span >
440443< span class ="cline-any cline-no "> </ span >
441- < span class ="cline-any cline-yes "> 233x </ span >
444+ < span class ="cline-any cline-yes "> 89x </ span >
442445< span class ="cline-any cline-yes "> 6x</ span >
443446< span class ="cline-any cline-yes "> 6x</ span >
447+ < span class ="cline-any cline-yes "> 89x</ span >
444448< span class ="cline-any cline-yes "> 51x</ span >
445449< span class ="cline-any cline-yes "> 51x</ span >
446450< span class ="cline-any cline-yes "> 233x</ span >
@@ -518,7 +522,7 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">blas/e
518522* @param {(ndarrayLike|*)} searchElement - search element
519523* @param {(ndarrayLike|integer)} [fromIndex] - index from which to begin searching
520524* @param {Options} [options] - function options
521- * @param {IntegerArray } [options.dim=-1] - dimension over which to perform operation
525+ * @param {integer } [options.dim=-1] - dimension over which to perform operation
522526* @param {boolean} [options.keepdims=false] - boolean indicating whether the reduced dimensions should be included in the returned ndarray as singleton dimensions
523527* @param {string} [options.dtype] - output ndarray data type
524528* @throws {TypeError} first argument must be an ndarray-like object
@@ -630,18 +634,20 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">blas/e
630634 options = arguments[ 3 ];
631635 hasOptions = true;
632636 }
633- if ( hasOptions && !isPlainObject( options ) ) {
634- throw new TypeError( format( 'invalid argument. Options argument must be an object. Value: `%s`.', options ) );
635- }
636- // Resolve provided options...
637- if ( hasOwnProp( options, 'dim' ) ) {
638- opts.dims[ 0 ] = options.dim;
639- }
640- if ( hasOwnProp( options, 'keepdims' ) ) < span class ="branch-0 cbranch-no " title ="branch not covered " > {</ span >
641- < span class ="cstat-no " title ="statement not covered " > opts.keepdims = options.keepdims;</ span >
642- < span class ="cstat-no " title ="statement not covered " > }</ span >
643- if ( hasOwnProp( options, 'dtype' ) ) {
644- opts.dtype = options.dtype;
637+ if ( hasOptions ) {
638+ if ( !isPlainObject( options ) ) {
639+ throw new TypeError( format( 'invalid argument. Options argument must be an object. Value: `%s`.', options ) );
640+ }
641+ // Resolve provided options...
642+ if ( hasOwnProp( options, 'dim' ) ) {
643+ opts.dims[ 0 ] = options.dim;
644+ }
645+ if ( hasOwnProp( options, 'keepdims' ) ) < span class ="branch-0 cbranch-no " title ="branch not covered " > {</ span >
646+ < span class ="cstat-no " title ="statement not covered " > opts.keepdims = options.keepdims;</ span >
647+ < span class ="cstat-no " title ="statement not covered " > }</ span >
648+ if ( hasOwnProp( options, 'dtype' ) ) {
649+ opts.dtype = options.dtype;
650+ }
645651 }
646652 // Resolve the list of non-reduced dimensions:
647653 sh = getShape( x );
@@ -676,7 +682,7 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">blas/e
676682 < div class ='footer quiet pad2 space-top1 center small '>
677683 Code coverage generated by
678684 < a href ="https://istanbul.js.org/ " target ="_blank " rel ="noopener noreferrer "> istanbul</ a >
679- at 2025-07-23T02:30:58.252Z
685+ at 2025-07-24T22:14:50.906Z
680686 </ div >
681687 < script src ="../../../../prettify.js "> </ script >
682688 < script >
0 commit comments