aureooms/js-pseudo-random

View on GitHub
src/nextUint16.js

Summary

Maintainability
A
0 mins
Test Coverage
F
0%
export default function nextUint16(prng) {
    return (prng.next().value >>> 16) & 0xff_ff;
}