Improve SORT_REGEX

pull/21833/head
Michael Telatynski 2019-12-27 17:04:14 +00:00
parent ab12288979
commit f9e386adaa
1 changed files with 3 additions and 2 deletions

View File

@ -32,8 +32,9 @@ const INITIAL_LOAD_NUM_MEMBERS = 30;
const INITIAL_LOAD_NUM_INVITED = 5;
const SHOW_MORE_INCREMENT = 100;
// Regex applied to member names before applying sort, to fuzzy it a little
const SORT_REGEX = /[.?!,;:\-()[\]{}'"&@#\\/+_=]+/g;
// Regex applied to filter our punctuation in member names before applying sort, to fuzzy it a little
// matches all ASCII punctuation: !"#$%&'()*+,-./:;<=>?@[\]^_`{|}~
const SORT_REGEX = /[\x21-\x2F\x3A-\x40\x5B-\x60\x7B-\x7E]+/g;
module.exports = createReactClass({
displayName: 'MemberList',