diff options
author | inoas <mail@inoas.com> | 2022-04-11 23:54:33 +0200 |
---|---|---|
committer | Louis Pilfold <louis@lpil.uk> | 2022-04-16 10:23:34 +0100 |
commit | 75802b6408842e4f59521bd52e72237ef31cd64e (patch) | |
tree | bd252fffdd9816fed3e155d27925a8d62b5d1585 /src/gleam_stdlib.mjs | |
parent | db20f5a296038fa6ba73172eac5bd5a3818942da (diff) | |
download | gleam_stdlib-75802b6408842e4f59521bd52e72237ef31cd64e.tar.gz gleam_stdlib-75802b6408842e4f59521bd52e72237ef31cd64e.zip |
wip
Diffstat (limited to 'src/gleam_stdlib.mjs')
-rw-r--r-- | src/gleam_stdlib.mjs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gleam_stdlib.mjs b/src/gleam_stdlib.mjs index 5d80640..59077e9 100644 --- a/src/gleam_stdlib.mjs +++ b/src/gleam_stdlib.mjs @@ -246,7 +246,7 @@ export function power(base, exponent) { return Math.pow(base, exponent); } -export function random() { +export function random_uniform() { return Math.random(); } |