Skip to content

Commit

Permalink
馃毃 Reformat README.md (#563)
Browse files Browse the repository at this point in the history
  • Loading branch information
dubzzz committed Mar 12, 2023
1 parent ffacfbd commit 05421f2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ const firstDiceValue = rand(1, 6); // value in {1..6}, here: 6
While not perfect, here is a rather simple way to generate a seed for your PNRG.

```javascript
const seed = Date.now() ^ (Math.random() * 0x100000000)
const seed = Date.now() ^ (Math.random() * 0x100000000);
```

## Documentation
Expand Down

0 comments on commit 05421f2

Please sign in to comment.