Skip to content

Commit 9eea3c7

Browse files
committed
Update artifacts
1 parent 8d3db8a commit 9eea3c7

File tree

6 files changed

+10
-9
lines changed

6 files changed

+10
-9
lines changed

math/base/special/modf/assign.js.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -526,7 +526,7 @@ <h1><a href="../../../../../index.html">All files</a> / <a href="index.html">mat
526526
<div class='footer quiet pad2 space-top1 center small'>
527527
Code coverage generated by
528528
<a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer">istanbul</a>
529-
at 2025-03-30T21:26:07.690Z
529+
at 2025-05-27T15:42:09.837Z
530530
</div>
531531
<script src="../../../../../prettify.js"></script>
532532
<script>

math/base/special/modf/coverage.ndjson

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,4 @@
22
[305,305,100,24,24,100,3,3,100,305,305,100,"f36cfab3875404fd9c58b6e2a6fedca5e04cb4d9","2024-03-23 21:18:39 -0400"]
33
[305,305,100,24,24,100,3,3,100,305,305,100,"b89c97ce0b812ff0b2aab16b4d77969d44fe3e8c","2024-09-28 13:56:33 -0400"]
44
[306,306,100,24,24,100,3,3,100,306,306,100,"51ba1926c849a9997662f0f636165b59320214ba","2025-03-30 17:24:42 -0400"]
5+
[306,306,100,24,24,100,3,3,100,306,306,100,"eec9cfa4705b0425b8a00cdfa3ca72c6998e7905","2025-05-27 08:39:29 -0700"]

math/base/special/modf/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ <h1><a href="../../../../../index.html">All files</a> math/base/special/modf/lib
146146
<div class='footer quiet pad2 space-top1 center small'>
147147
Code coverage generated by
148148
<a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer">istanbul</a>
149-
at 2025-03-30T21:26:07.690Z
149+
at 2025-05-27T15:42:09.837Z
150150
</div>
151151
<script src="../../../../../prettify.js"></script>
152152
<script>

math/base/special/modf/index.js.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -247,7 +247,7 @@ <h1><a href="../../../../../index.html">All files</a> / <a href="index.html">mat
247247
<div class='footer quiet pad2 space-top1 center small'>
248248
Code coverage generated by
249249
<a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer">istanbul</a>
250-
at 2025-03-30T21:26:07.690Z
250+
at 2025-05-27T15:42:09.837Z
251251
</div>
252252
<script src="../../../../../prettify.js"></script>
253253
<script>

math/base/special/modf/main.js.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -208,7 +208,7 @@ <h1><a href="../../../../../index.html">All files</a> / <a href="index.html">mat
208208
<div class='footer quiet pad2 space-top1 center small'>
209209
Code coverage generated by
210210
<a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer">istanbul</a>
211-
at 2025-03-30T21:26:07.690Z
211+
at 2025-05-27T15:42:09.837Z
212212
</div>
213213
<script src="../../../../../prettify.js"></script>
214214
<script>

math/base/special/modf/native.js.html

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -194,16 +194,16 @@ <h1><a href="../../../../../index.html">All files</a> / <a href="index.html">mat
194194
*
195195
* @private
196196
* @param {number} x - input value
197-
* @returns {Array&lt;number&gt;} output array
197+
* @returns {Float64Array} output array
198198
*
199199
* @example
200200
* var parts = modf( 3.14 );
201-
* // returns [ 3.0, 0.14000000000000012 ]
201+
* // returns &lt;Float64Array&gt;[ 3.0, 0.14000000000000012 ]
202202
*/
203203
function modf( x ) {
204204
var out = new Float64Array( 2 );
205-
addon( out, x );
206-
return [ out[ 0 ], out[ 1 ] ];
205+
addon( x, out );
206+
return out;
207207
}
208208
&nbsp;
209209
&nbsp;
@@ -217,7 +217,7 @@ <h1><a href="../../../../../index.html">All files</a> / <a href="index.html">mat
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-03-30T21:26:07.690Z
220+
at 2025-05-27T15:42:09.837Z
221221
</div>
222222
<script src="../../../../../prettify.js"></script>
223223
<script>

0 commit comments

Comments
 (0)