Update rand.js

This commit is contained in:
Namhyeon Go 2022-01-15 21:42:33 +09:00 committed by GitHub
parent 7e6e4ef513
commit 31dce1d5c7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -61,7 +61,7 @@ function shuffle(arr) {
function rotate(arr, i) {
return arr[i % arr.length];
};
}
exports.randomize = randomize;
exports.getInt = getInt;