File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -186,7 +186,7 @@ function factory() {
186
186
* Returns the PRNG seed.
187
187
*
188
188
* @private
189
- * @returns {* } seed
189
+ * @returns {Uint32Array } seed
190
190
*/
191
191
function getSeed ( ) {
192
192
return rand . PRNG . seed ;
@@ -226,7 +226,7 @@ function factory() {
226
226
* Returns the current pseudorandom number generator state.
227
227
*
228
228
* @private
229
- * @returns {* } current state
229
+ * @returns {Uint32Array } current state
230
230
*/
231
231
function getState ( ) {
232
232
return rand . PRNG . state ;
@@ -236,7 +236,7 @@ function factory() {
236
236
* Sets the pseudorandom number generator state.
237
237
*
238
238
* @private
239
- * @param {* } s - generator state
239
+ * @param {Uint32Array } s - generator state
240
240
* @throws {Error } must provide a valid state
241
241
*/
242
242
function setState ( s ) {
You can’t perform that action at this time.
0 commit comments