UNPKG
php.js
Version:
latest (0.1.1)
0.1.1
0.1.0
Use phpjs functions as required.
php.js
/
lcg_value.js
11 lines
(9 loc)
•
282 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
module
.
exports
=
function
(
){
return
lcg_value.
apply
(
exports
,
arguments
) };
function
lcg_value
(
) {
// discuss at: http://phpjs.org/functions/lcg_value/
// original by: Onno Marsman
// test: skip
// example 1: lcg_value()
// returns 1: 1
return
Math
.
random
(); }