@@ -25,7 +25,7 @@ <h1><a href="../../../index.html">All files</a> / <a href="index.html">assert/is
25
25
< div class ='fl pad1y space-right2 '>
26
26
< span class ="strong "> 100% </ span >
27
27
< span class ="quiet "> Statements</ span >
28
- < span class ='fraction '> 54/54 </ span >
28
+ < span class ='fraction '> 55/55 </ span >
29
29
</ div >
30
30
31
31
@@ -46,7 +46,7 @@ <h1><a href="../../../index.html">All files</a> / <a href="index.html">assert/is
46
46
< div class ='fl pad1y space-right2 '>
47
47
< span class ="strong "> 100% </ span >
48
48
< span class ="quiet "> Lines</ span >
49
- < span class ='fraction '> 54/54 </ span >
49
+ < span class ='fraction '> 55/55 </ span >
50
50
</ div >
51
51
52
52
@@ -57,7 +57,7 @@ <h1><a href="../../../index.html">All files</a> / <a href="index.html">assert/is
57
57
< template id ="filterTemplate ">
58
58
< div class ="quiet ">
59
59
Filter:
60
- < input oninput =" onInput() " type ="search " id ="fileSearch ">
60
+ < input type ="search " id ="fileSearch ">
61
61
</ div >
62
62
</ template >
63
63
</ div >
@@ -117,7 +117,9 @@ <h1><a href="../../../index.html">All files</a> / <a href="index.html">assert/is
117
117
< a name ='L52 '> </ a > < a href ='#L52 '> 52</ a >
118
118
< a name ='L53 '> </ a > < a href ='#L53 '> 53</ a >
119
119
< a name ='L54 '> </ a > < a href ='#L54 '> 54</ a >
120
- < a name ='L55 '> </ a > < a href ='#L55 '> 55</ a > </ td > < td class ="line-coverage quiet "> < span class ="cline-any cline-yes "> 1x</ span >
120
+ < a name ='L55 '> </ a > < a href ='#L55 '> 55</ a >
121
+ < a name ='L56 '> </ a > < a href ='#L56 '> 56</ a > </ td > < td class ="line-coverage quiet "> < span class ="cline-any cline-yes "> 1x</ span >
122
+ < span class ="cline-any cline-yes "> 1x</ span >
121
123
< span class ="cline-any cline-yes "> 1x</ span >
122
124
< span class ="cline-any cline-yes "> 1x</ span >
123
125
< span class ="cline-any cline-yes "> 1x</ span >
@@ -194,6 +196,7 @@ <h1><a href="../../../index.html">All files</a> / <a href="index.html">assert/is
194
196
// MODULES //
195
197
196
198
var isndarrayLike = require( '@stdlib/assert/is-ndarray-like' );
199
+ var getDType = require( '@stdlib/ndarray/base/dtype' );
197
200
198
201
199
202
// MAIN //
@@ -218,7 +221,7 @@ <h1><a href="../../../index.html">All files</a> / <a href="index.html">assert/is
218
221
* // returns false
219
222
*/
220
223
function isComplex128ndarrayLike( v ) {
221
- return ( isndarrayLike( v ) && v.dtype === 'complex128' );
224
+ return ( isndarrayLike( v ) && getDType( v ) === 'complex128' );
222
225
}
223
226
224
227
@@ -232,7 +235,7 @@ <h1><a href="../../../index.html">All files</a> / <a href="index.html">assert/is
232
235
< div class ='footer quiet pad2 space-top1 center small '>
233
236
Code coverage generated by
234
237
< a href ="https://istanbul.js.org/ " target ="_blank " rel ="noopener noreferrer "> istanbul</ a >
235
- at 2023-12-12T02:52:36.765Z
238
+ at 2025-09-18T08:33:59.406Z
236
239
</ div >
237
240
< script src ="../../../prettify.js "> </ script >
238
241
< script >
0 commit comments