entropy-source/pseudo-random

View on GitHub
src/nextUint64.js

Summary

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