@@ -25,7 +25,7 @@ <h1><a href="../../../index.html">All files</a> / <a href="index.html">ndarray/f
2525 < div class ='fl pad1y space-right2 '>
2626 < span class ="strong "> 100% </ span >
2727 < span class ="quiet "> Statements</ span >
28- < span class ='fraction '> 364/364 </ span >
28+ < span class ='fraction '> 365/365 </ span >
2929 </ div >
3030
3131
@@ -46,7 +46,7 @@ <h1><a href="../../../index.html">All files</a> / <a href="index.html">ndarray/f
4646 < div class ='fl pad1y space-right2 '>
4747 < span class ="strong "> 100% </ span >
4848 < span class ="quiet "> Lines</ span >
49- < span class ='fraction '> 364/364 </ span >
49+ < span class ='fraction '> 365/365 </ span >
5050 </ div >
5151
5252
@@ -427,7 +427,9 @@ <h1><a href="../../../index.html">All files</a> / <a href="index.html">ndarray/f
427427< a name ='L362 '> </ a > < a href ='#L362 '> 362</ a >
428428< a name ='L363 '> </ a > < a href ='#L363 '> 363</ a >
429429< a name ='L364 '> </ a > < a href ='#L364 '> 364</ a >
430- < a name ='L365 '> </ a > < a href ='#L365 '> 365</ a > </ td > < td class ="line-coverage quiet "> < span class ="cline-any cline-yes "> 1x</ span >
430+ < a name ='L365 '> </ a > < a href ='#L365 '> 365</ a >
431+ < a name ='L366 '> </ a > < a href ='#L366 '> 366</ a > </ td > < td class ="line-coverage quiet "> < span class ="cline-any cline-yes "> 1x</ span >
432+ < span class ="cline-any cline-yes "> 1x</ span >
431433< span class ="cline-any cline-yes "> 1x</ span >
432434< span class ="cline-any cline-yes "> 1x</ span >
433435< span class ="cline-any cline-yes "> 1x</ span >
@@ -847,6 +849,7 @@ <h1><a href="../../../index.html">All files</a> / <a href="index.html">ndarray/f
847849* @param {Options} [options] - function options
848850* @param {NonNegativeInteger} [options.depth] - maximum number of dimensions to flatten
849851* @param {string} [options.order='row-major'] - order in which input ndarray elements should be flattened
852+ * @param {*} [options.dtype] - output ndarray data type
850853* @throws {TypeError} first argument must be an ndarray-like object
851854* @throws {TypeError} options argument must be an object
852855* @throws {TypeError} must provide valid options
@@ -1089,8 +1092,8 @@ <h1><a href="../../../index.html">All files</a> / <a href="index.html">ndarray/f
10891092
10901093 // Define default options:
10911094 opts = {
1092- 'depth': xsh.length, // by default, flatten to a one-dimensional ndarray
1093- 'order': ROW_MAJOR, // by default, flatten in lexicographic order (i.e., trailing dimensions first; e.g., if `x` is a matrix, flatten row-by-row)
1095+ 'depth': xsh.length, // by default, flatten to a one-dimensional ndarray
1096+ 'order': ROW_MAJOR, // by default, flatten in lexicographic order (i.e., trailing dimensions first; e.g., if `x` is a matrix, flatten row-by-row)
10941097 'dtype': getDType( x )
10951098 };
10961099
@@ -1162,7 +1165,7 @@ <h1><a href="../../../index.html">All files</a> / <a href="index.html">ndarray/f
11621165 < div class ='footer quiet pad2 space-top1 center small '>
11631166 Code coverage generated by
11641167 < a href ="https://istanbul.js.org/ " target ="_blank " rel ="noopener noreferrer "> istanbul</ a >
1165- at 2025-09-17T10:04:02.875Z
1168+ at 2025-09-17T10:05:43.340Z
11661169 </ div >
11671170 < script src ="../../../prettify.js "> </ script >
11681171 < script >
0 commit comments