aureooms/js-pseudo-random

View on GitHub
src/nextUint32.js

Summary

Maintainability
A
0 mins
Test Coverage
export default function nextUint32(prng) {
    return prng.next().value >>> 0;
}