您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

isInsecureRoomName.js 306B

12345678910111213
  1. // @flow
  2. import zxcvbn from 'zxcvbn';
  3. /**
  4. * Returns true if the room name is considered a weak (insecure) one.
  5. *
  6. * @param {string} roomName - The room name.
  7. * @returns {boolean}
  8. */
  9. export default function isInsecureRoomName(roomName: string = ''): boolean {
  10. return zxcvbn(roomName).score < 3;
  11. }