Skip to content

Commit 9528c21

Browse files
committed
Auto-generated commit
1 parent 143ae5e commit 9528c21

File tree

4 files changed

+9
-29
lines changed

4 files changed

+9
-29
lines changed

.github/workflows/publish.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -110,9 +110,9 @@ jobs:
110110
exit 0
111111
fi
112112
rm -rf ./bin/cli
113-
rm test/test.cli.js
114-
rm etc/cli_opts.json
115-
rm docs/usage.txt
113+
rm -f test/test.cli.js
114+
rm -f etc/cli_opts.json
115+
rm -f docs/usage.txt
116116
117117
# For all dependencies, check in all *.js files if they are still used; if not, remove them:
118118
jq -r '.dependencies | keys[]' ./package.json | while read -r dep; do
@@ -162,8 +162,8 @@ jobs:
162162
# Remove unnecessary files:
163163
- name: 'Remove unnecessary files'
164164
run: |
165-
rm docs/repl.txt
166-
rm docs/types/test.ts
165+
rm -f docs/repl.txt
166+
rm -f docs/types/test.ts
167167
168168
# Replace all stdlib GitHub dependencies with the respective npm packages:
169169
- name: 'Replace all stdlib GitHub dependencies with the respective npm packages'

CONTRIBUTORS

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,11 @@ Bruno Fenzl <brunofenzl@gmail.com>
99
Christopher Dambamuromo <chridam@gmail.com>
1010
Dominik Moritz <domoritz@gmail.com>
1111
Frank Kovacs <fran70kk@gmail.com>
12+
Harshita Kalani <95532771+HarshitaKalani@users.noreply.github.com>
1213
James <jdgelok@gmail.com>
1314
Jithin KS <jithinks112@gmail.com>
1415
Joey Reed <joeyrreed@gmail.com>
16+
Jordan-Gallivan <115050475+Jordan-Gallivan@users.noreply.github.com>
1517
Joris Labie <joris.labie1@gmail.com>
1618
Justin Dennison <justin1dennison@gmail.com>
1719
Marcus <mfantham@users.noreply.github.com>
@@ -27,4 +29,5 @@ Seyyed Parsa Neshaei <spneshaei@users.noreply.github.com>
2729
Shraddheya Shendre <shendreshraddheya@gmail.com>
2830
Stephannie Jiménez Gacha <steff456@hotmail.com>
2931
dorrin-sot <59933477+dorrin-sot@users.noreply.github.com>
32+
orimiles5 <97595296+orimiles5@users.noreply.github.com>
3033
rei2hu <rei2hu@users.noreply.github.com>

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -408,7 +408,7 @@ Copyright &copy; 2016-2023. The Stdlib [Authors][stdlib-authors].
408408
-->
409409

410410
[chat-image]: https://img.shields.io/gitter/room/stdlib-js/stdlib.svg
411-
[chat-url]: https://gitter.im/stdlib-js/stdlib/
411+
[chat-url]: https://app.gitter.im/#/room/#stdlib-js_stdlib:gitter.im
412412

413413
[stdlib]: https://github.com/stdlib-js/stdlib
414414

docs/repl.txt

Lines changed: 0 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -17,29 +17,6 @@
1717
options: Object (optional)
1818
Options.
1919

20-
options.prng: Function (optional)
21-
Pseudorandom number generator (PRNG) for generating uniformly
22-
distributed pseudorandom numbers on the interval `[0,1)`. If provided,
23-
the `state` and `seed` options are ignored. In order to seed the
24-
returned pseudorandom number generator, one must seed the provided
25-
`prng` (assuming the provided `prng` is seedable).
26-
27-
options.seed: integer|ArrayLikeObject<integer> (optional)
28-
Pseudorandom number generator seed. The seed may be either a positive
29-
unsigned 32-bit integer or, for arbitrary length seeds, an array-like
30-
object containing unsigned 32-bit integers.
31-
32-
options.state: Uint32Array (optional)
33-
Pseudorandom number generator state. If provided, the `seed` option is
34-
ignored.
35-
36-
options.copy: boolean (optional)
37-
Boolean indicating whether to copy a provided pseudorandom number
38-
generator state. Setting this option to `false` allows sharing state
39-
between two or more pseudorandom number generators. Setting this option
40-
to `true` ensures that a returned generator has exclusive control over
41-
its internal state. Default: true.
42-
4320
options.dtype: string (optional)
4421
Output array data type. Default: 'float64'.
4522

0 commit comments

Comments
 (0)