aureooms/js-pseudo-random

View on GitHub
src/nextUint64.js

Summary

Maintainability
A
0 mins
Test Coverage
A
100%
export default function nextUint64(prng) {
    return [prng.next().value, prng.next().value];
}