0.2.0 • Published 6 months ago

nativeprng v0.2.0

Weekly downloads
-
License
SEE LICENSE IN LI...
Repository
github
Last release
6 months ago

nativeprng

Native Mulberry32, SplitMix32, and Thrust (63-bit) PRNG functions.

Installation

npm install nativeprng

Usage

import { mulberry32, splitMix32, thrust } from 'nativeprng'

mulberry32.setState(999)
mulberry32.getUint32() // 4165713787
mulberry32.getUint32() // 2726356805

splitMix32.setState(999)
splitMix32.getUint32() // 1391740943
splitMix32.getUint32() // 2804096416

thrust.setState(999n)
thrust.getUint64() // 1282685676472565925n
thrust.getUint64() // 10605289615821262735n
0.2.0

6 months ago

0.1.0

1 year ago