2023-06-02 13:01:03 -06:00
|
|
|
import { nativeRandomStr } from "native-utils/built";
|
2020-03-29 08:16:36 -06:00
|
|
|
|
2023-06-02 13:01:03 -06:00
|
|
|
export function secureRndstr(length = 32, _ = true): string {
|
|
|
|
return nativeRandomStr(length);
|
2020-03-29 08:16:36 -06:00
|
|
|
}
|