Skip to content

Commit f9b36d1

Browse files
committed
Update artifacts
1 parent a763c2b commit f9b36d1

File tree

5 files changed

+16
-19
lines changed

5 files changed

+16
-19
lines changed
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
[193,195,98.9744,11,12,91.6667,2,2,100,193,195,98.9744,"fc6dae795de7e27cd2e8a45b413eb3b82f2d69ac","2025-12-09 17:17:00 +0530"]
1+
[193,195,98.9744,11,12,91.6667,2,2,100,193,195,98.9744,"5365aa11bc46ac034dd7443f796b59540e8935ed","2025-12-09 17:38:53 +0530"]

math/base/special/truncbf/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ <h1>All files</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-12-09T11:49:13.407Z
134+
at 2025-12-09T12:11:12.511Z
135135
</div>
136136
<script src="prettify.js"></script>
137137
<script>

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

Lines changed: 12 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -128,8 +128,7 @@ <h1><a href="index.html">All files</a> index.js</h1>
128128
<a name='L63'></a><a href='#L63'>63</a>
129129
<a name='L64'></a><a href='#L64'>64</a>
130130
<a name='L65'></a><a href='#L65'>65</a>
131-
<a name='L66'></a><a href='#L66'>66</a>
132-
<a name='L67'></a><a href='#L67'>67</a></td><td class="line-coverage quiet"><span class="cline-any cline-yes">1x</span>
131+
<a name='L66'></a><a href='#L66'>66</a></td><td class="line-coverage quiet"><span class="cline-any cline-yes">1x</span>
133132
<span class="cline-any cline-yes">1x</span>
134133
<span class="cline-any cline-yes">1x</span>
135134
<span class="cline-any cline-yes">1x</span>
@@ -194,8 +193,7 @@ <h1><a href="index.html">All files</a> index.js</h1>
194193
<span class="cline-any cline-yes">1x</span>
195194
<span class="cline-any cline-yes">1x</span>
196195
<span class="cline-any cline-yes">1x</span>
197-
<span class="cline-any cline-yes">1x</span>
198-
<span class="cline-any cline-neutral">&nbsp;</span></td><td class="text"><pre class="prettyprint lang-js">/**
196+
<span class="cline-any cline-yes">1x</span></td><td class="text"><pre class="prettyprint lang-js">/**
199197
* @license Apache-2.0
200198
*
201199
* Copyright (c) 2025 The Stdlib Authors.
@@ -204,7 +202,7 @@ <h1><a href="index.html">All files</a> index.js</h1>
204202
* you may not use this file except in compliance with the License.
205203
* You may obtain a copy of the License at
206204
*
207-
* http://www.apache.org/licenses/LICENSE-2.0
205+
* http://www.apache.org/licenses/LICENSE-2.0
208206
*
209207
* Unless required by applicable law or agreed to in writing, software
210208
* distributed under the License is distributed on an "AS IS" BASIS,
@@ -224,23 +222,23 @@ <h1><a href="index.html">All files</a> index.js</h1>
224222
* var truncbf = require( '@stdlib/math/base/special/truncbf' );
225223
*
226224
* var v = truncbf( 3.14159, 2, 10 );
227-
* // returns 3.14
225+
* // returns 3.140000104904175
228226
*
229227
* v = truncbf( 3.14159, 3, 10 );
230-
* // returns 3.141
228+
* // returns 3.1410000324249268
231229
*
232230
* v = truncbf( 15.0, -1, 10 );
233231
* // returns 10.0
234232
*
235233
* v = truncbf( -3.14159, 2, 10 );
236-
* // returns -3.14
234+
* // returns -3.140000104904175
237235
*/
238236
&nbsp;
239237
// MODULES //
240238
&nbsp;
241239
var setReadOnly = require( '@stdlib/utils/define-nonenumerable-read-only-property' );
242-
var main = require( './main.js' );
243-
var tryRequire = require( '@stdlib/utils/try-require' );
240+
var tryRequire = require( '@stdlib/utils/try-require' ); // &lt;-- MOVED UP
241+
var main = require( './main.js' ); // &lt;-- MOVED DOWN
244242
&nbsp;
245243
&nbsp;
246244
// VARIABLES //
@@ -251,24 +249,23 @@ <h1><a href="index.html">All files</a> index.js</h1>
251249
// MAIN //
252250
&nbsp;
253251
if ( native instanceof Error ) {
254-
native = null;
252+
native = null;
255253
}
256254
if ( native ) <span class="branch-0 cbranch-no" title="branch not covered" >{</span>
257-
<span class="cstat-no" title="statement not covered" > setReadOnly( main, 'native', native );</span>
255+
<span class="cstat-no" title="statement not covered" > setReadOnly( main, 'native', native );</span>
258256
<span class="cstat-no" title="statement not covered" >}</span>
259257
&nbsp;
260258
&nbsp;
261259
// EXPORTS //
262260
&nbsp;
263-
module.exports = main;
264-
&nbsp;</pre></td></tr></table></pre>
261+
module.exports = main;</pre></td></tr></table></pre>
265262

266263
<div class='push'></div><!-- for sticky footer -->
267264
</div><!-- /wrapper -->
268265
<div class='footer quiet pad2 space-top1 center small'>
269266
Code coverage generated by
270267
<a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer">istanbul</a>
271-
at 2025-12-09T11:49:13.407Z
268+
at 2025-12-09T12:11:12.511Z
272269
</div>
273270
<script src="prettify.js"></script>
274271
<script>

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -313,7 +313,7 @@ <h1><a href="index.html">All files</a> main.js</h1>
313313
<div class='footer quiet pad2 space-top1 center small'>
314314
Code coverage generated by
315315
<a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer">istanbul</a>
316-
at 2025-12-09T11:49:13.407Z
316+
at 2025-12-09T12:11:12.511Z
317317
</div>
318318
<script src="prettify.js"></script>
319319
<script>

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -214,7 +214,7 @@ <h1><a href="index.html">All files</a> native.js</h1>
214214
<div class='footer quiet pad2 space-top1 center small'>
215215
Code coverage generated by
216216
<a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer">istanbul</a>
217-
at 2025-12-09T11:49:13.407Z
217+
at 2025-12-09T12:11:12.511Z
218218
</div>
219219
<script src="prettify.js"></script>
220220
<script>

0 commit comments

Comments
 (0)