in tools/PasswordRulesParser.js [74:78]
function _isIdentifierCharacter(c) { console.assert(c.length === 1); return c >= "a" && c <= "z" || c >= "A" && c <= "Z" || c === "-"; }