From 31dce1d5c74460d6cb9d001f23e56d6f5c7f47f2 Mon Sep 17 00:00:00 2001 From: "Namhyeon, Go" Date: Sat, 15 Jan 2022 21:42:33 +0900 Subject: [PATCH] Update rand.js --- lib/rand.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/rand.js b/lib/rand.js index 1f30147..2762d87 100644 --- a/lib/rand.js +++ b/lib/rand.js @@ -61,7 +61,7 @@ function shuffle(arr) { function rotate(arr, i) { return arr[i % arr.length]; -}; +} exports.randomize = randomize; exports.getInt = getInt;