UNPKG

pokie

Version:

A server-side video slot game logic framework for JavaScript and TypeScript.

7 lines 207 B
import crypto from "crypto"; export class SecureRandomNumberGenerator { getRandomInt(min, max) { return crypto.randomInt(min, max); } } //# sourceMappingURL=SecureRandomNumberGenerator.js.map