Skip to content

Instantly share code, notes, and snippets.

View fatfisz's full-sized avatar

fatfisz fatfisz

View GitHub Profile
@fatfisz
fatfisz / mersenne.js
Last active August 17, 2017 09:21
Mersenne Twister as an ES module (one export - a function)
/**
* Modified from the gist: https://gist.github.com/methodin/1553779
*/
const seed = 42;
const length = 624;
const offset = 397;
const multiplier = 0x6c078965;
const upper = 0x80000000;