mirror of
https://iceshrimp.dev/limepotato/jormungandr-bite.git
synced 2024-11-23 02:17:40 -07:00
5 lines
161 B
TypeScript
5 lines
161 B
TypeScript
import { nativeRandomStr } from "native-utils/built/index.js";
|
|
|
|
export function secureRndstr(length = 32, _ = true): string {
|
|
return nativeRandomStr(length);
|
|
}
|