fix: remove leading zero-width-space from comments, ensure space after links

This commit is contained in:
ThetaDev 2024-12-18 19:31:24 +01:00
parent 8cadbc1a4c
commit 162959ca45
No known key found for this signature in database
GPG key ID: E319D3C5148D65B6
3 changed files with 41 additions and 5 deletions

View file

@ -250,6 +250,7 @@ fn extract_js_fn(js: &str, offset: usize, name: &str) -> Result<String, DeobfErr
}
}
// Looking for variable names
if let Token::Ident(id) = &token {
if !period_before {
let id_str = id.to_string();