Skip to content

Commit bcb90cf

Browse files
committed
Update artifacts
1 parent 9b45766 commit bcb90cf

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
[147,147,100,16,16,100,1,1,100,147,147,100,"348b06bf7a53a9e70807dcc56780f7667c41ee29","2025-12-05 01:49:34 -0800"]
1+
[147,147,100,16,16,100,1,1,100,147,147,100,"b02ebbb8a6c23e2cb61241ab56d288169b44d264","2025-12-05 01:51:03 -0800"]

number/float16/base/from-word/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ <h1>All files</h1>
116116
<div class='footer quiet pad2 space-top1 center small'>
117117
Code coverage generated by
118118
<a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer">istanbul</a>
119-
at 2025-12-05T09:50:41.136Z
119+
at 2025-12-05T09:52:32.308Z
120120
</div>
121121
<script src="prettify.js"></script>
122122
<script>

number/float16/base/from-word/index.js.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -196,7 +196,7 @@ <h1><a href="index.html">All files</a> index.js</h1>
196196
<div class='footer quiet pad2 space-top1 center small'>
197197
Code coverage generated by
198198
<a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer">istanbul</a>
199-
at 2025-12-05T09:50:41.136Z
199+
at 2025-12-05T09:52:32.308Z
200200
</div>
201201
<script src="prettify.js"></script>
202202
<script>

number/float16/base/from-word/main.js.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -302,7 +302,7 @@ <h1><a href="index.html">All files</a> main.js</h1>
302302
var FLOAT16_SIGN_MASK = require( '@stdlib/constants/float16/sign-mask' );
303303
var FLOAT16_EXPONENT_MASK = require( '@stdlib/constants/float16/exponent-mask' );
304304
var FLOAT16_SIGNIFICAND_MASK = require( '@stdlib/constants/float16/significand-mask' );
305-
var FLOAT16_NUM_SIGNIFICAND_BITS = require( '@stdlib/constants/float16/num-significand-bits' );
305+
var FLOAT16_NUM_SIGNIFICAND_BITS = require( '@stdlib/constants/float16/num-significand-bits' ); // eslint-disable-line id-length
306306
var FLOAT16_NUM_EXPONENT_BITS = require( '@stdlib/constants/float16/num-exponent-bits' );
307307
&nbsp;
308308
&nbsp;
@@ -336,7 +336,7 @@ <h1><a href="index.html">All files</a> main.js</h1>
336336
sign = ( word &amp; FLOAT16_SIGN_MASK ) &gt;&gt;&gt; 15;
337337
&nbsp;
338338
// Extract exponent (bits 14-10):
339-
exponent = ( word &amp; FLOAT16_EXPONENT_MASK ) &gt;&gt;&gt; FLOAT16_NUM_SIGNIFICAND_BITS;
339+
exponent = ( word &amp; FLOAT16_EXPONENT_MASK ) &gt;&gt;&gt; FLOAT16_NUM_SIGNIFICAND_BITS; // eslint-disable-line max-len
340340
&nbsp;
341341
// Extract mantissa (bits 9-0):
342342
mantissa = word &amp; FLOAT16_SIGNIFICAND_MASK;
@@ -385,7 +385,7 @@ <h1><a href="index.html">All files</a> main.js</h1>
385385
<div class='footer quiet pad2 space-top1 center small'>
386386
Code coverage generated by
387387
<a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer">istanbul</a>
388-
at 2025-12-05T09:50:41.136Z
388+
at 2025-12-05T09:52:32.308Z
389389
</div>
390390
<script src="prettify.js"></script>
391391
<script>

0 commit comments

Comments
 (0)