UNPKG

js-randomness-predictor

Version:

Predict Math.random output in Node, Deno, Bun, Chrome, Firefox, and Safari

12 lines (11 loc) 329 B
import { RuntimeType } from "./types.js"; export default class ExecutionRuntime { private constructor(); static isDeno(): boolean; static isBun(): boolean; static isNode(): boolean; static isFirefox(): boolean; static isChrome(): boolean; static isSafari(): boolean; static type(): RuntimeType; }