Skip to content

Commit

Permalink
Update artifacts
Browse files Browse the repository at this point in the history
  • Loading branch information
stdlib-bot committed Apr 7, 2024
1 parent e9742ee commit 2538da8
Show file tree
Hide file tree
Showing 7 changed files with 122 additions and 195 deletions.
1 change: 1 addition & 0 deletions array/base/count-if/coverage.ndjson
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
[209,209,100,16,16,100,4,4,100,209,209,100,"ecd3518101b9c013ff9279b7f56e64015606907d","2024-03-02 16:13:49 -0500"]
[175,175,100,10,10,100,3,3,100,175,175,100,"0a6cefd854a121ec4cf59bbbf5c4745b549e3bed","2024-04-07 14:02:36 -0700"]
18 changes: 9 additions & 9 deletions array/base/count-if/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -25,28 +25,28 @@ <h1><a href="../../../../index.html">All files</a> array/base/count-if/lib</h1>
<div class='fl pad1y space-right2'>
<span class="strong">100% </span>
<span class="quiet">Statements</span>
<span class='fraction'>209/209</span>
<span class='fraction'>175/175</span>
</div>


<div class='fl pad1y space-right2'>
<span class="strong">100% </span>
<span class="quiet">Branches</span>
<span class='fraction'>16/16</span>
<span class='fraction'>10/10</span>
</div>


<div class='fl pad1y space-right2'>
<span class="strong">100% </span>
<span class="quiet">Functions</span>
<span class='fraction'>4/4</span>
<span class='fraction'>3/3</span>
</div>


<div class='fl pad1y space-right2'>
<span class="strong">100% </span>
<span class="quiet">Lines</span>
<span class='fraction'>209/209</span>
<span class='fraction'>175/175</span>
</div>


Expand Down Expand Up @@ -99,13 +99,13 @@ <h1><a href="../../../../index.html">All files</a> array/base/count-if/lib</h1>
<div class="chart"><div class="cover-fill cover-full" style="width: 100%"></div><div class="cover-empty" style="width: 0%"></div></div>
</td>
<td data-value="100" class="pct high">100%</td>
<td data-value="163" class="abs high">163/163</td>
<td data-value="129" class="abs high">129/129</td>
<td data-value="100" class="pct high">100%</td>
<td data-value="15" class="abs high">15/15</td>
<td data-value="9" class="abs high">9/9</td>
<td data-value="100" class="pct high">100%</td>
<td data-value="4" class="abs high">4/4</td>
<td data-value="3" class="abs high">3/3</td>
<td data-value="100" class="pct high">100%</td>
<td data-value="163" class="abs high">163/163</td>
<td data-value="129" class="abs high">129/129</td>
</tr>

</tbody>
Expand All @@ -116,7 +116,7 @@ <h1><a href="../../../../index.html">All files</a> array/base/count-if/lib</h1>
<div class='footer quiet pad2 space-top1 center small'>
Code coverage generated by
<a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer">istanbul</a>
at 2024-03-02T21:15:15.926Z
at 2024-04-07T21:05:16.185Z
</div>
<script src="../../../../prettify.js"></script>
<script>
Expand Down
10 changes: 5 additions & 5 deletions array/base/count-if/index.js.html
Original file line number Diff line number Diff line change
Expand Up @@ -176,19 +176,19 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">array/
'use strict';
&nbsp;
/**
* Count the number of elements in an array that satisfy the provided testing function.
* Count the number of elements in an array which pass a test implemented by a predicate function.
*
* @module @stdlib/array/base/count-if
*
* @example
* var countIf = require( '@stdlib/array/base/count-if' );
*
* var x = [ 0, 1, 0, 1, 2 ];
*
* function predicate( value ) {
* return ( value % 2 === 0 )
* return ( value &gt; 0 );
* }
*
* var x = [ 0, 1, 0, 1, 2 ];
*
* var n = countIf( x, predicate );
* // returns 3
*/
Expand All @@ -208,7 +208,7 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">array/
<div class='footer quiet pad2 space-top1 center small'>
Code coverage generated by
<a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer">istanbul</a>
at 2024-03-02T21:15:15.926Z
at 2024-04-07T21:05:16.185Z
</div>
<script src="../../../../prettify.js"></script>
<script>
Expand Down
Loading

0 comments on commit 2538da8

Please sign in to comment.