Skip to content

Commit e3dafeb

Browse files
committed
Auto-generated commit
1 parent 2651573 commit e3dafeb

File tree

4 files changed

+9
-40
lines changed

4 files changed

+9
-40
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
@@ -343,7 +343,7 @@ Copyright &copy; 2016-2023. The Stdlib [Authors][stdlib-authors].
343343
-->
344344

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

348348
[stdlib]: https://github.com/stdlib-js/stdlib
349349

docs/repl.txt

Lines changed: 0 additions & 34 deletions
Original file line numberDiff line numberDiff line change
@@ -11,23 +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-
signed 32-bit integer on the interval `[1, 2147483646]` or, for
17-
arbitrary length seeds, an array-like object containing signed 32-bit
18-
integers.
19-
20-
options.state: Int32Array (optional)
21-
Pseudorandom number generator state. If provided, the `seed` option is
22-
ignored.
23-
24-
options.copy: boolean (optional)
25-
Boolean indicating whether to copy a provided pseudorandom number
26-
generator state. Setting this option to `false` allows sharing state
27-
between two or more pseudorandom number generators. Setting this option
28-
to `true` ensures that a returned generator has exclusive control over
29-
its internal state. Default: true.
30-
3114
options.dtype: string (optional)
3215
Output array data type. Default: 'float64'.
3316

@@ -53,23 +36,6 @@
5336
options: Object (optional)
5437
Options.
5538

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

0 commit comments

Comments
 (0)