Skip to content

Commit

Permalink
refactoring after mutations tests.
Browse files Browse the repository at this point in the history
  • Loading branch information
Jojo-craft committed Aug 16, 2023
1 parent c47069a commit 3d637a7
Showing 1 changed file with 0 additions and 12 deletions.
12 changes: 0 additions & 12 deletions src/string.ts
Original file line number Diff line number Diff line change
Expand Up @@ -352,10 +352,6 @@ export class String {
return false;
}

if (String.isBlank(value)) {
return false;
}

for (const character of value) {
if (String.isNotAlpha(character)) {
continue;
Expand All @@ -379,10 +375,6 @@ export class String {
return false;
}

if (String.isBlank(value)) {
return false;
}

for (const character of value) {
if (String.isNotAlpha(character)) {
continue;
Expand All @@ -408,10 +400,6 @@ export class String {
return false;
}

if (String.isBlank(value)) {
return false;
}

if (!String.containsLowerCase(value)) {
return false;
}
Expand Down

0 comments on commit 3d637a7

Please sign in to comment.