Crates.io | invisible_unicode |
lib.rs | invisible_unicode |
version | 1.0.0 |
source | src |
created_at | 2024-04-03 07:52:11.357271 |
updated_at | 2024-04-03 07:55:35.881778 |
description | Library for finding invisible unicode characters. |
homepage | |
repository | https://github.com/poohpooher/invisible_unicode |
max_upload_size | |
id | 1194802 |
size | 10,890 |
let name = "abcd ";
let checker = InvisibleChecker::builder().build();
if checker.has_invisible_char(&name) {
println!("contains invisible char");
}