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:
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'
Original file line number Diff line number Diff line change @@ -9,9 +9,11 @@ Bruno Fenzl <brunofenzl@gmail.com>
99Christopher Dambamuromo <chridam@gmail.com>
1010Dominik Moritz <domoritz@gmail.com>
1111Frank Kovacs <fran70kk@gmail.com>
12+ Harshita Kalani <95532771+HarshitaKalani@users.noreply.github.com>
1213James <jdgelok@gmail.com>
1314Jithin KS <jithinks112@gmail.com>
1415Joey Reed <joeyrreed@gmail.com>
16+ Jordan-Gallivan <115050475+Jordan-Gallivan@users.noreply.github.com>
1517Joris Labie <joris.labie1@gmail.com>
1618Justin Dennison <justin1dennison@gmail.com>
1719Marcus <mfantham@users.noreply.github.com>
@@ -27,4 +29,5 @@ Seyyed Parsa Neshaei <spneshaei@users.noreply.github.com>
2729Shraddheya Shendre <shendreshraddheya@gmail.com>
2830Stephannie Jiménez Gacha <steff456@hotmail.com>
2931dorrin-sot <59933477+dorrin-sot@users.noreply.github.com>
32+ orimiles5 <97595296+orimiles5@users.noreply.github.com>
3033rei2hu <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].
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
Original file line number Diff line number Diff line change 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
You can’t perform that action at this time.
0 commit comments