Skip to content

Commit

Permalink
chore(deps): update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
believer committed Jan 22, 2024
1 parent fc91d75 commit 322c501
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
Binary file modified bun.lockb
Binary file not shown.
4 changes: 3 additions & 1 deletion lib/utils/areaCodeDigitCount.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,9 @@ export const areaCodeDigitCount = (phoneNumber: string): 2 | 3 | 4 => {

if (validTwo.test(phoneNumber)) {
return 2
} else if (validThree.test(phoneNumber)) {
}

if (validThree.test(phoneNumber)) {
return 3
}

Expand Down
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -44,10 +44,10 @@
},
"homepage": "https://github.com/opendevtools/telefonnummer#readme",
"devDependencies": {
"@biomejs/biome": "1.3.3",
"bun-types": "1.0.13",
"@biomejs/biome": "1.5.2",
"bun-types": "1.0.25",
"rimraf": "5.0.5",
"typescript": "5.3.2"
"typescript": "5.3.3"
},
"type": "module"
}

0 comments on commit 322c501

Please sign in to comment.