Skip to content

Commit 9f06ebe

Browse files
committed
Auto-generated commit
1 parent ffcd6a1 commit 9f06ebe

File tree

2 files changed

+9
-14
lines changed

2 files changed

+9
-14
lines changed

CHANGELOG.md

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
55
<section class="release" id="unreleased">
66

7-
## Unreleased (2025-10-30)
7+
## Unreleased (2025-11-06)
88

99
<section class="features">
1010

@@ -148,9 +148,9 @@
148148

149149
### Closed Issues
150150

151-
A total of 17 issues were closed in this release:
151+
A total of 18 issues were closed in this release:
152152

153-
[#6004](https://github.com/stdlib-js/stdlib/issues/6004), [#6786](https://github.com/stdlib-js/stdlib/issues/6786), [#6800](https://github.com/stdlib-js/stdlib/issues/6800), [#7060](https://github.com/stdlib-js/stdlib/issues/7060), [#7350](https://github.com/stdlib-js/stdlib/issues/7350), [#7694](https://github.com/stdlib-js/stdlib/issues/7694), [#7914](https://github.com/stdlib-js/stdlib/issues/7914), [#8000](https://github.com/stdlib-js/stdlib/issues/8000), [#8043](https://github.com/stdlib-js/stdlib/issues/8043), [#8061](https://github.com/stdlib-js/stdlib/issues/8061), [#8140](https://github.com/stdlib-js/stdlib/issues/8140), [#8155](https://github.com/stdlib-js/stdlib/issues/8155), [#8169](https://github.com/stdlib-js/stdlib/issues/8169), [#8183](https://github.com/stdlib-js/stdlib/issues/8183), [#8227](https://github.com/stdlib-js/stdlib/issues/8227), [#8241](https://github.com/stdlib-js/stdlib/issues/8241), [#8260](https://github.com/stdlib-js/stdlib/issues/8260)
153+
[#6004](https://github.com/stdlib-js/stdlib/issues/6004), [#6786](https://github.com/stdlib-js/stdlib/issues/6786), [#6800](https://github.com/stdlib-js/stdlib/issues/6800), [#7060](https://github.com/stdlib-js/stdlib/issues/7060), [#7350](https://github.com/stdlib-js/stdlib/issues/7350), [#7694](https://github.com/stdlib-js/stdlib/issues/7694), [#7914](https://github.com/stdlib-js/stdlib/issues/7914), [#8000](https://github.com/stdlib-js/stdlib/issues/8000), [#8043](https://github.com/stdlib-js/stdlib/issues/8043), [#8061](https://github.com/stdlib-js/stdlib/issues/8061), [#8140](https://github.com/stdlib-js/stdlib/issues/8140), [#8155](https://github.com/stdlib-js/stdlib/issues/8155), [#8169](https://github.com/stdlib-js/stdlib/issues/8169), [#8183](https://github.com/stdlib-js/stdlib/issues/8183), [#8227](https://github.com/stdlib-js/stdlib/issues/8227), [#8241](https://github.com/stdlib-js/stdlib/issues/8241), [#8260](https://github.com/stdlib-js/stdlib/issues/8260), [#8390](https://github.com/stdlib-js/stdlib/issues/8390)
154154

155155
</section>
156156

@@ -162,6 +162,7 @@ A total of 17 issues were closed in this release:
162162

163163
<details>
164164

165+
- [`7e82b0c`](https://github.com/stdlib-js/stdlib/commit/7e82b0ca1438082723d163849d06b76ed335a883) - **chore:** fix JavaScript lint errors [(#8400)](https://github.com/stdlib-js/stdlib/pull/8400) _(by Rasim Bhat, Athan Reines)_
165166
- [`67a57a2`](https://github.com/stdlib-js/stdlib/commit/67a57a2861401202eb362b67971cf023ecf1518b) - **docs:** refactor example to use array PRNG [(#8233)](https://github.com/stdlib-js/stdlib/pull/8233) _(by Udit Agarwal, Athan Reines)_
166167
- [`de7f81a`](https://github.com/stdlib-js/stdlib/commit/de7f81a291cbabdd093f465844316bdff3a363b9) - **chore:** fix JavaScript lint errors [(#8261)](https://github.com/stdlib-js/stdlib/pull/8261) _(by Payal Goswami)_
167168
- [`c08b5f1`](https://github.com/stdlib-js/stdlib/commit/c08b5f1e9ab95ed8f8710a9002b48578959e220a) - **chore:** fix JavaScript lint errors [(#8243)](https://github.com/stdlib-js/stdlib/pull/8243) _(by Mohsin)_
@@ -260,7 +261,7 @@ A total of 17 issues were closed in this release:
260261

261262
### Contributors
262263

263-
A total of 18 people contributed to this release. Thank you to the following contributors:
264+
A total of 19 people contributed to this release. Thank you to the following contributors:
264265

265266
- Athan Reines
266267
- Dudhat Hemil Pravinkumar
@@ -272,6 +273,7 @@ A total of 18 people contributed to this release. Thank you to the following con
272273
- Neeraj Pathak
273274
- Payal Goswami
274275
- Philipp Burckhardt
276+
- Rasim Bhat
275277
- Satyajeet Chavan
276278
- Srinivas Batthula
277279
- Tyson Cung

some-by/examples/index.js

Lines changed: 3 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -18,21 +18,14 @@
1818

1919
'use strict';
2020

21-
var randu = require( '@stdlib/random/base/randu' );
21+
var uniform = require( '@stdlib/random/array/uniform' );
2222
var someBy = require( './../lib' );
2323

2424
function threshold( value ) {
2525
return ( value > 0.95 );
2626
}
2727

28-
var bool;
29-
var arr;
30-
var i;
28+
var arr = uniform( 100, 0.0, 1.0 );
3129

32-
arr = new Array( 100 );
33-
for ( i = 0; i < arr.length; i++ ) {
34-
arr[ i ] = randu();
35-
}
36-
37-
bool = someBy( arr, 5, threshold );
30+
var bool = someBy( arr, 5, threshold );
3831
console.log( bool );

0 commit comments

Comments
 (0)