The discord.js interactions PR has been merged, and d.js master (v13 dev) now has proper support for slash commands!
Official resources:
The discord.js interactions PR has been merged, and d.js master (v13 dev) now has proper support for slash commands!
Official resources:
/^(?!(corn|bread)$).+/.test('corn') // false (blacklisted) | |
/^(?!(corn|bread)$).+/.test('bread') // false (blacklisted) | |
/^(?!(corn|bread)$).+/.test('cornbread') // true (not blacklisted) | |
/^(?!(corn|bread)$).+/.test('corndog') // true (not blacklisted) | |
/^(?!(corn|bread)$).+/.test('read') // true (not blacklisted) |
#add 'node_modules' to .gitignore file | |
git rm -r --cached node_modules | |
git commit -m 'Remove the now ignored directory node_modules' | |
git push origin <branch-name> |