Skip to content

Commit a11d0a4

Browse files
committed
Auto-generated commit
1 parent ba7dbab commit a11d0a4

File tree

4 files changed

+12
-13
lines changed

4 files changed

+12
-13
lines changed

.github/.keepalive

Lines changed: 0 additions & 1 deletion
This file was deleted.

CONTRIBUTORS

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ Ognjen Jevremović <ognjenjevremovic@users.noreply.github.com>
2929
Philipp Burckhardt <pburckhardt@outlook.com>
3030
Pranav Goswami <goswami.4@iitj.ac.in>
3131
Ricky Reusser <rsreusser@gmail.com>
32+
Robert Gislason <gztown2216@yahoo.com>
3233
Roman Stetsyk <25715951+romanstetsyk@users.noreply.github.com>
3334
Ryan Seal <splrk@users.noreply.github.com>
3435
Seyyed Parsa Neshaei <spneshaei@users.noreply.github.com>
@@ -37,4 +38,3 @@ Stephannie Jiménez Gacha <steff456@hotmail.com>
3738
Yernar Yergaziyev <yernar.yergaziyev@erg.kz>
3839
orimiles5 <97595296+orimiles5@users.noreply.github.com>
3940
rei2hu <reimu@reimu.ws>
40-
Robert Gislason <gztown2216@yahoo.com>

docs/types/index.d.ts

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -113,37 +113,37 @@ declare class RandomStream extends Readable {
113113
/**
114114
* Destruction state.
115115
*/
116-
private readonly _destroyed: boolean; // tslint:disable-line: variable-name
116+
private readonly _destroyed: boolean;
117117

118118
/**
119119
* Flag indicating whether a stream is operating in object mode.
120120
*/
121-
private readonly _objectMode: boolean; // tslint:disable-line: variable-name
121+
private readonly _objectMode: boolean;
122122

123123
/**
124124
* Data separator.
125125
*/
126-
private readonly _sep: string; // tslint:disable-line: variable-name
126+
private readonly _sep: string;
127127

128128
/**
129129
* Total number of iterations.
130130
*/
131-
private readonly _iter: number; // tslint:disable-line: variable-name
131+
private readonly _iter: number;
132132

133133
/**
134134
* Number of iterations after which to emit the underlying PRNG state.
135135
*/
136-
private readonly _siter: number; // tslint:disable-line: variable-name
136+
private readonly _siter: number;
137137

138138
/**
139139
* Iteration counter.
140140
*/
141-
private _i: number; // tslint:disable-line: variable-name
141+
private _i: number;
142142

143143
/**
144144
* Pseudorandom number generator for generating Rayleigh distributed pseudorandom numbers.
145145
*/
146-
private readonly _prng: random.PRNG; // tslint:disable-line: variable-name
146+
private readonly _prng: random.PRNG;
147147

148148
/**
149149
* Underlying PRNG.
@@ -180,7 +180,7 @@ declare class RandomStream extends Readable {
180180
*
181181
* @param size - number (of bytes) to read
182182
*/
183-
_read( size: number ): void; // tslint:disable-line: variable-name
183+
_read( size: number ): void;
184184

185185
/**
186186
* Gracefully destroys a stream, providing backward compatibility.
@@ -281,7 +281,7 @@ interface Constructor {
281281
* streams.push( createStream() );
282282
* }
283283
*/
284-
factory( p: number, options?: Options ): ( ...args: Array<any> ) => RandomStream; // tslint:disable-line: max-line-length
284+
factory( p: number, options?: Options ): ( ...args: Array<any> ) => RandomStream;
285285

286286
/**
287287
* Returns a function for creating readable streams which generate pseudorandom numbers drawn from a Rayleigh distribution.

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@
6464
"@stdlib/random-base-rayleigh": "^0.1.0",
6565
"@stdlib/streams-node-stdout": "^0.1.1",
6666
"@stdlib/string-format": "^0.1.1",
67-
"@stdlib/types": "^0.1.0",
67+
"@stdlib/types": "^0.2.0",
6868
"@stdlib/utils-define-nonenumerable-property": "^0.1.1",
6969
"@stdlib/utils-define-nonenumerable-read-only-property": "^0.1.1",
7070
"@stdlib/utils-define-read-only-accessor": "^0.1.1",
@@ -79,7 +79,7 @@
7979
"@stdlib/assert-is-buffer": "^0.1.1",
8080
"@stdlib/assert-is-uint32array": "^0.1.1",
8181
"@stdlib/assert-is-windows": "^0.1.1",
82-
"@stdlib/bench": "^0.1.0",
82+
"@stdlib/bench": "^0.2.0",
8383
"@stdlib/constants-uint32-max": "^0.1.1",
8484
"@stdlib/fs-exists": "^0.1.1",
8585
"@stdlib/fs-unlink": "^0.1.1",

0 commit comments

Comments
 (0)