Skip to content

Kick command | discord.js

I’ve made a kick command for my bot, everything works fine but everyone can use it. I want that only people who have perms to use this command. Is there any solution to fix this problem? This is my code: Please help me! Thank you! Answer Use:

Regex lookaround start of line

I have this regex https://regex101.com/r/wRBBAz/1 Testing with input I specified start of line (^) in lookaround so I don’t understand why it selects instead of only Answer The problem is that [^ .] matches any char but a space and a dot, that is, it matches line break chars. You can use See the regex d…

React hangs when trying to connect to component

For some reason, when trying to connect this component, react simply hangs without giving any error: Presumably the problem is with the profile object. Previously, everything was packaged in variables and everything worked, but now I replaced the variables with an object and react just stopped loading. Answer…