aureooms/js-pseudo-random

View on GitHub
src/genBoolean.js

Summary

Maintainability
A
0 mins
Test Coverage
import genBit from './genBit.js';

export default function* genBoolean(prng) {
    for (const bit of genBit(prng)) yield Boolean(bit);
}