locutus
Version:
Locutus other languages' standard libraries to JavaScript for fun and educational purposes
12 lines (11 loc) • 408 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.mt_getrandmax = mt_getrandmax;
function mt_getrandmax() {
// discuss at: https://locutus.io/php/mt_getrandmax/
// parity verified: PHP 8.3
// original by: Onno Marsman (https://twitter.com/onnomarsman)
// example 1: mt_getrandmax()
// returns 1: 2147483647
return 2147483647;
}