chore(monorepo): delta, january, quark
This commit is contained in:
9
crates/delta/src/util/regex.rs
Normal file
9
crates/delta/src/util/regex.rs
Normal file
@@ -0,0 +1,9 @@
|
||||
use once_cell::sync::Lazy;
|
||||
use regex::Regex;
|
||||
|
||||
/// Regex for valid usernames
|
||||
///
|
||||
/// Block zero width space
|
||||
/// Block lookalike characters
|
||||
pub static RE_USERNAME: Lazy<Regex> =
|
||||
Lazy::new(|| Regex::new(r"^[^\u200BА-Яа-яΑ-Ωα-ω]+$").unwrap());
|
||||
Reference in New Issue
Block a user