Skip to content

Commit

Permalink
review-fix:testZipcodeからzipCodeへ変数名を修正
Browse files Browse the repository at this point in the history
  • Loading branch information
marumoto-goq committed May 2, 2024
1 parent 37f23ef commit c0cbdfe
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/test/utils/convertZipCode.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
export const convertZipCode = (testZipCode: string): string => {
const halfWidthZipCode: string = testZipCode.replace(
export const convertZipCode = (zipCode: string): string => {
const halfWidthZipCode: string = zipCode.replace(
/[0-9]/g,
(s: string) => String.fromCharCode(s.charCodeAt(0) - 65248)
);
Expand Down

0 comments on commit c0cbdfe

Please sign in to comment.