feat,refac: 게임 로직 내 '랜덤'을 RandUtil을 활용하여 재설정 #219

Merged
Hide_D merged 7 commits from drbg_world into devel 2022-05-18 00:56:59 +09:00
Showing only changes of commit 32470e3eb8 - Show all commits
+1
View File
@@ -9,6 +9,7 @@ export function simpleSerialize(...values : (string|number)[]): string{
}
if(isInteger(value)){
result.push(`int(${value})`);
continue;
}
const float6 = value.toLocaleString("en-US", {maximumFractionDigits: 6});
result.push(`float(${float6})`);