This commit is contained in:
split / May 2023-01-29 15:55:08 -08:00
parent 96d0c1bf96
commit 7531515e78

View file

@ -4,7 +4,7 @@ import { readFile, writeFile } from "fs";
import { Readable } from "node:stream" import { Readable } from "node:stream"
export let id_check_regex = /[A-Za-z0-9_\-\.]+/ export let id_check_regex = /[A-Za-z0-9_\-\.]+/
export let alphanum = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890" export let alphanum = Array.from("abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890")
// bad solution but whatever // bad solution but whatever