Skip to content

Commit 129bb5d

Browse files
committed
Update artifacts
1 parent 6276a06 commit 129bb5d

15 files changed

+36
-31
lines changed

math/tools/unary/coverage.ndjson

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
[581,690,84.2029,42,54,77.7778,5,8,62.5,581,690,84.2029,"6dc5ea77dbef23e522255c7c60e5db1ccfa85568","2025-03-30 15:46:46 -0700"]
22
[238,400,59.5,3,3,100,0,2,0,238,400,59.5,"bac2f1af6007402efe470fffaf6a4c37645a3e28","2025-09-11 23:42:15 -0700"]
3+
[238,400,59.5,3,3,100,0,2,0,238,400,59.5,"ab2e77bb82f0c6e7854e3279429a1ec8c6ff5603","2025-09-18 01:57:19 -0700"]

math/tools/unary/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ <h1><a href="../../../../index.html">All files</a> math/tools/unary/lib</h1>
131131
<div class='footer quiet pad2 space-top1 center small'>
132132
Code coverage generated by
133133
<a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer">istanbul</a>
134-
at 2025-09-12T06:43:38.150Z
134+
at 2025-09-18T08:59:26.212Z
135135
</div>
136136
<script src="../../../../prettify.js"></script>
137137
<script>

math/tools/unary/index.js.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -286,7 +286,7 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">math/t
286286
<div class='footer quiet pad2 space-top1 center small'>
287287
Code coverage generated by
288288
<a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer">istanbul</a>
289-
at 2025-09-12T06:43:38.150Z
289+
at 2025-09-18T08:59:26.212Z
290290
</div>
291291
<script src="../../../../prettify.js"></script>
292292
<script>

math/tools/unary/main.js.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -710,7 +710,7 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">math/t
710710
<span class="cstat-no" title="statement not covered" > * @private</span>
711711
<span class="cstat-no" title="statement not covered" > * @param {ndarray} x - input array</span>
712712
<span class="cstat-no" title="statement not covered" > * @param {Options} [options] - options</span>
713-
<span class="cstat-no" title="statement not covered" > * @param {string} [options.dtype] - output array data type</span>
713+
<span class="cstat-no" title="statement not covered" > * @param {*} [options.dtype] - output array data type</span>
714714
<span class="cstat-no" title="statement not covered" > * @param {string} [options.order] - output array order</span>
715715
<span class="cstat-no" title="statement not covered" > * @throws {TypeError} first argument must be an ndarray</span>
716716
<span class="cstat-no" title="statement not covered" > * @throws {TypeError} first argument must have a supported data type</span>
@@ -817,7 +817,7 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">math/t
817817
<div class='footer quiet pad2 space-top1 center small'>
818818
Code coverage generated by
819819
<a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer">istanbul</a>
820-
at 2025-09-12T06:43:38.150Z
820+
at 2025-09-18T08:59:26.212Z
821821
</div>
822822
<script src="../../../../prettify.js"></script>
823823
<script>

math/tools/unary/validate.js.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -261,7 +261,7 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">math/t
261261
* @param {Object} opts - destination object
262262
* @param {Array} dtypes - list of supported output data types
263263
* @param {Object} options - options
264-
* @param {string} [options.dtype] - output array data type
264+
* @param {*} [options.dtype] - output array data type
265265
* @param {string} [options.order] - output array order
266266
* @returns {(Error|null)} null or an error object
267267
*
@@ -283,7 +283,7 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">math/t
283283
<span class="cstat-no" title="statement not covered" > }</span>
284284
<span class="cstat-no" title="statement not covered" > if ( hasOwnProp( options, 'dtype' ) ) {</span>
285285
<span class="cstat-no" title="statement not covered" > opts.dtype = options.dtype;</span>
286-
<span class="cstat-no" title="statement not covered" > if ( !contains( dtypes, opts.dtype ) ) {</span>
286+
<span class="cstat-no" title="statement not covered" > if ( !contains( dtypes, String( opts.dtype ) ) ) {</span>
287287
<span class="cstat-no" title="statement not covered" > return new TypeError( format( 'invalid option. `%s` option must be one of the following: "%s". Option: `%s`.', 'dtype', join( dtypes, '", "' ), opts.dtype ) );</span>
288288
<span class="cstat-no" title="statement not covered" > }</span>
289289
<span class="cstat-no" title="statement not covered" > }</span>
@@ -307,7 +307,7 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">math/t
307307
<div class='footer quiet pad2 space-top1 center small'>
308308
Code coverage generated by
309309
<a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer">istanbul</a>
310-
at 2025-09-12T06:43:38.150Z
310+
at 2025-09-18T08:59:26.212Z
311311
</div>
312312
<script src="../../../../prettify.js"></script>
313313
<script>

ndarray/array/cast_buffer.js.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -280,7 +280,7 @@ <h1><a href="../../../index.html">All files</a> / <a href="index.html">ndarray/a
280280
<div class='footer quiet pad2 space-top1 center small'>
281281
Code coverage generated by
282282
<a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer">istanbul</a>
283-
at 2025-08-27T09:44:37.058Z
283+
at 2025-09-18T08:59:28.926Z
284284
</div>
285285
<script src="../../../prettify.js"></script>
286286
<script>

ndarray/array/copy_view.js.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -571,7 +571,7 @@ <h1><a href="../../../index.html">All files</a> / <a href="index.html">ndarray/a
571571
<div class='footer quiet pad2 space-top1 center small'>
572572
Code coverage generated by
573573
<a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer">istanbul</a>
574-
at 2025-08-27T09:44:37.058Z
574+
at 2025-09-18T08:59:28.926Z
575575
</div>
576576
<script src="../../../prettify.js"></script>
577577
<script>

ndarray/array/coverage.ndjson

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,3 +7,4 @@
77
[638,894,71.3647,38,61,62.2951,3,10,30,638,894,71.3647,"25f29f85b888fd71646902ad9cda4f5f6aa62eff","2025-05-07 18:43:24 -0700"]
88
[639,895,71.3966,38,61,62.2951,3,10,30,639,895,71.3966,"ccb3f8e33a29e6a09074d8bc7e54f0a6fa88a022","2025-05-08 01:47:38 -0700"]
99
[639,895,71.3966,38,61,62.2951,3,10,30,639,895,71.3966,"c4cc264996ce9f4241476c857c4c985fb6612c84","2025-08-27 02:43:07 -0700"]
10+
[640,896,71.4286,38,61,62.2951,3,10,30,640,896,71.4286,"ab2e77bb82f0c6e7854e3279429a1ec8c6ff5603","2025-09-18 01:57:19 -0700"]

ndarray/array/defaults.js.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -232,7 +232,7 @@ <h1><a href="../../../index.html">All files</a> / <a href="index.html">ndarray/a
232232
<div class='footer quiet pad2 space-top1 center small'>
233233
Code coverage generated by
234234
<a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer">istanbul</a>
235-
at 2025-08-27T09:44:37.058Z
235+
at 2025-09-18T08:59:28.926Z
236236
</div>
237237
<script src="../../../prettify.js"></script>
238238
<script>

ndarray/array/expand_shape.js.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -217,7 +217,7 @@ <h1><a href="../../../index.html">All files</a> / <a href="index.html">ndarray/a
217217
<div class='footer quiet pad2 space-top1 center small'>
218218
Code coverage generated by
219219
<a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer">istanbul</a>
220-
at 2025-08-27T09:44:37.058Z
220+
at 2025-09-18T08:59:28.926Z
221221
</div>
222222
<script src="../../../prettify.js"></script>
223223
<script>

0 commit comments

Comments
 (0)