JS `\s+` for the re-encode/return-type strips (Unicode whitespace).
()
| 114 | } |
| 115 | /// JS `\s+` for the re-encode/return-type strips (Unicode whitespace). |
| 116 | fn ws_re() -> &'static Regex { |
| 117 | static RE: OnceLock<Regex> = OnceLock::new(); |
| 118 | RE.get_or_init(|| Regex::new(r"\s+").unwrap()) |
| 119 | } |
| 120 | |
| 121 | struct Scope { |
| 122 | row: u32, |
no test coverage detected