Skip to content

Instantly share code, notes, and snippets.

View anishshobithps's full-sized avatar
👀
Oh , I see your looking at my profile, I hope you like it!

Anish Shobith P S anishshobithps

👀
Oh , I see your looking at my profile, I hope you like it!
View GitHub Profile
@anishshobithps
anishshobithps / regex.js
Last active July 21, 2022 13:28
Some awesome regex to make your coding easier :P
module.exports = {
mentions: {
userOrMember: /^(?:<@!?)?(\d{17,19})>?$/,
channel: /^(?:<#)?(\d{17,19})>?$/,
role: /^(?:<@&)?(\d{17,19})>?$/,
snowflake: /^(\d{17,19})$/,
},
misc: {
emoji: /^(?:<a?:\w{2,32}:)?(\d{17,19})>?$/,
username: /.{2,32}/,