You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12345678910111213 |
- // @flow
-
- import zxcvbn from 'zxcvbn';
-
- /**
- * Returns true if the room name is considered a weak (insecure) one.
- *
- * @param {string} roomName - The room name.
- * @returns {boolean}
- */
- export default function isInsecureRoomName(roomName: string = ''): boolean {
- return zxcvbn(roomName).score < 3;
- }
|