UNPKG

@haiku/player

Version:

Haiku Player is a JavaScript library for building user interfaces

11 lines 340 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); var seedrandom_1 = require("./../vendor/seedrandom"); function PRNG(seed) { this._prng = seedrandom_1.default(seed, null, null); } exports.default = PRNG; PRNG.prototype.random = function random() { return this._prng(); }; //# sourceMappingURL=PRNG.js.map