merge 036, everything broken

This commit is contained in:
Matt Hill
2024-03-20 13:32:57 -06:00
parent f4fadd366e
commit 5e6a7e134f
429 changed files with 42285 additions and 27221 deletions

View File

@@ -0,0 +1,11 @@
import { RandomString } from "../config/configTypes"
import { getRandomCharInSet } from "./getRandomCharInSet"
export function getRandomString(generator: RandomString): string {
let s = ""
for (let i = 0; i < generator.len; i++) {
s = s + getRandomCharInSet(generator.charset)
}
return s
}