Skip to content
This repository has been archived by the owner on Aug 31, 2023. It is now read-only.

Commit

Permalink
Run formatter
Browse files Browse the repository at this point in the history
  • Loading branch information
rosslh committed Nov 26, 2022
1 parent 4348f61 commit 3218215
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -66,9 +66,9 @@ fn is_id_and_string_literal_inner_text_equal(
.as_js_string_literal_expression()?;
let literal_text = literal.inner_string_text().ok()?;

if id_text.len() != usize::from(literal_text.len()) {
return None;
}
if id_text.len() != usize::from(literal_text.len()) {
return None;
}

for (from_id, from_literal) in id_text.chars().zip(literal_text.chars()) {
if from_id != from_literal || from_id.is_lowercase() {
Expand Down

0 comments on commit 3218215

Please sign in to comment.