entropy-source/pseudo-random

View on GitHub
src/_fill.js

Summary

Maintainability
A
0 mins
Test Coverage
const _fill = (next, prng, array, i = 0, j = array.length) => {
    for (; i < j; ++i) {
        array[i] = next(prng);
    }
};

export default _fill;