mirror of
https://iceshrimp.dev/crimekillz/iceshrimp-161sh.git
synced 2024-11-24 21:19:07 +01:00
6 lines
161 B
TypeScript
6 lines
161 B
TypeScript
import { nativeRandomStr } from "native-utils/built/index.js";
|
|
|
|
export function secureRndstr(length = 32, _ = true): string {
|
|
return nativeRandomStr(length);
|
|
}
|