2018-11-09 22:10:20 +01:00
|
|
|
|
2019-10-09 01:35:47 +02:00
|
|
|
global.random = function (array) {
|
2023-10-11 01:14:42 +02:00
|
|
|
return array[Math.floor(Math.random() * array.length)]
|
2018-11-09 22:10:20 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
global.sanitizeName = function sanitizeName(str){ // for showing names in discord
|
|
|
|
str = str.replace(/[_~*\\]/g,"\\$&"); // formatting
|
2023-10-11 01:14:42 +02:00
|
|
|
str = str.replace(/discord.gg\//g, 'discord.gg\\/'); // invites
|
|
|
|
str = str.replace(/(http|https):\/\//g, "$1\\://"); // urls
|
2018-11-09 22:10:20 +01:00
|
|
|
return str;
|
|
|
|
}
|