aureooms/js-pseudo-random

View on GitHub
src/nextUint8.js

Summary

Maintainability
A
0 mins
Test Coverage
F
0%
export default function nextUint8(prng) {
    return (prng.next().value >>> 24) & 0xff;
}