Skip to content

Commit 9a2ae1f

Browse files
committed
Auto-generated commit
1 parent 6acade4 commit 9a2ae1f

File tree

4 files changed

+9
-38
lines changed

4 files changed

+9
-38
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
@@ -345,7 +345,7 @@ Copyright &copy; 2016-2023. The Stdlib [Authors][stdlib-authors].
345345
-->
346346

347347
[chat-image]: https://img.shields.io/gitter/room/stdlib-js/stdlib.svg
348-
[chat-url]: https://gitter.im/stdlib-js/stdlib/
348+
[chat-url]: https://app.gitter.im/#/room/#stdlib-js_stdlib:gitter.im
349349

350350
[stdlib]: https://github.com/stdlib-js/stdlib
351351

docs/repl.txt

Lines changed: 0 additions & 32 deletions
Original file line numberDiff line numberDiff line change
@@ -11,22 +11,6 @@
1111
options: Object (optional)
1212
Options.
1313

14-
options.seed: integer|ArrayLikeObject<integer> (optional)
15-
Pseudorandom number generator seed. The seed may be either a positive
16-
unsigned 32-bit integer or, for arbitrary length seeds, an array-like
17-
object containing unsigned 32-bit integers.
18-
19-
options.state: Uint32Array (optional)
20-
Pseudorandom number generator state. If provided, the `seed` option is
21-
ignored.
22-
23-
options.copy: boolean (optional)
24-
Boolean indicating whether to copy a provided pseudorandom number
25-
generator state. Setting this option to `false` allows sharing state
26-
between two or more pseudorandom number generators. Setting this option
27-
to `true` ensures that a returned generator has exclusive control over
28-
its internal state. Default: true.
29-
3014
options.dtype: string (optional)
3115
Output array data type. Default: 'float64'.
3216

@@ -53,22 +37,6 @@
5337
options: Object (optional)
5438
Options.
5539

56-
options.seed: integer|ArrayLikeObject<integer> (optional)
57-
Pseudorandom number generator seed. The seed may be either a positive
58-
unsigned 32-bit integer or, for arbitrary length seeds, an array-like
59-
object containing unsigned 32-bit integers.
60-
61-
options.state: Uint32Array (optional)
62-
Pseudorandom number generator state. If provided, the `seed` option is
63-
ignored.
64-
65-
options.copy: boolean (optional)
66-
Boolean indicating whether to copy a provided pseudorandom number
67-
generator state. Setting this option to `false` allows sharing state
68-
between two or more pseudorandom number generators. Setting this option
69-
to `true` ensures that a returned generator has exclusive control over
70-
its internal state. Default: true.
71-
7240
options.dtype: string (optional)
7341
Output array data type. Default: 'float64'.
7442

0 commit comments

Comments
 (0)