utils: String.random with dict

pull/162/head
undefined 3 years ago
parent 387bd5eb38
commit e2c5e57e53

@ -7,6 +7,7 @@ export interface LangConfig {
highlight: string;
monaco: string;
time_limit_rate: number;
domain: string[];
display: string;
target?: string;
sub?: LangConfig[];

@ -31,11 +31,11 @@ declare global {
}
}
const dict = 'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890';
const defaultDict = 'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890';
String.random = function random(digit = 32) {
String.random = function random(digit = 32, dict = defaultDict) {
let str = '';
for (let i = 1; i <= digit; i++) str += dict[Math.floor(Math.random() * 62)];
for (let i = 1; i <= digit; i++) str += dict[Math.floor(Math.random() * dict.length)];
return str;
};

@ -1,6 +1,6 @@
{
"name": "@hydrooj/utils",
"version": "1.0.21",
"version": "1.0.22",
"description": "hydrooj utils",
"main": "package.json",
"repository": "https://github.com/hydro-dev/Hydro.git",

Loading…
Cancel
Save