File tree Expand file tree Collapse file tree 4 files changed +9
-29
lines changed Expand file tree Collapse file tree 4 files changed +9
-29
lines changed Original file line number Diff line number Diff line change @@ -110,9 +110,9 @@ jobs:
110
110
exit 0
111
111
fi
112
112
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
116
116
117
117
# For all dependencies, check in all *.js files if they are still used; if not, remove them:
118
118
jq -r '.dependencies | keys[]' ./package.json | while read -r dep; do
@@ -162,8 +162,8 @@ jobs:
162
162
# Remove unnecessary files:
163
163
- name : ' Remove unnecessary files'
164
164
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
167
167
168
168
# Replace all stdlib GitHub dependencies with the respective npm packages:
169
169
- name : ' Replace all stdlib GitHub dependencies with the respective npm packages'
Original file line number Diff line number Diff line change @@ -9,9 +9,11 @@ Bruno Fenzl <brunofenzl@gmail.com>
9
9
Christopher Dambamuromo <chridam@gmail.com>
10
10
Dominik Moritz <domoritz@gmail.com>
11
11
Frank Kovacs <fran70kk@gmail.com>
12
+ Harshita Kalani <95532771+HarshitaKalani@users.noreply.github.com>
12
13
James <jdgelok@gmail.com>
13
14
Jithin KS <jithinks112@gmail.com>
14
15
Joey Reed <joeyrreed@gmail.com>
16
+ Jordan-Gallivan <115050475+Jordan-Gallivan@users.noreply.github.com>
15
17
Joris Labie <joris.labie1@gmail.com>
16
18
Justin Dennison <justin1dennison@gmail.com>
17
19
Marcus <mfantham@users.noreply.github.com>
@@ -27,4 +29,5 @@ Seyyed Parsa Neshaei <spneshaei@users.noreply.github.com>
27
29
Shraddheya Shendre <shendreshraddheya@gmail.com>
28
30
Stephannie Jiménez Gacha <steff456@hotmail.com>
29
31
dorrin-sot <59933477+dorrin-sot@users.noreply.github.com>
32
+ orimiles5 <97595296+orimiles5@users.noreply.github.com>
30
33
rei2hu <rei2hu@users.noreply.github.com>
Original file line number Diff line number Diff line change @@ -408,7 +408,7 @@ Copyright © 2016-2023. The Stdlib [Authors][stdlib-authors].
408
408
-->
409
409
410
410
[ 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
412
412
413
413
[ stdlib ] : https://github.com/stdlib-js/stdlib
414
414
Original file line number Diff line number Diff line change 17
17
options: Object (optional)
18
18
Options.
19
19
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
-
43
20
options.dtype: string (optional)
44
21
Output array data type. Default: 'float64'.
45
22
You can’t perform that action at this time.
0 commit comments