entropy-source/pseudo-random

View on GitHub
src/nextBigInt64.js

Summary

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

export default function nextBigInt64(prng) {
    return nextBigUint64(prng) - BigInt(2 ** 63);
}