郵便番号の文字列から、郵便番号クラスを生成する静的メソッドがあります。
static generatePostCode(postCode: string): PostCode { if (!/^[0-9]{3}-[0-9]{4}$/gm.test(postCode)) { throw new AssertionError('郵便番号の形式が正しくありません'); } const obj = postCode.split('-'); return new PostCode({ block1: obj[0], block2: obj[1] }); }
この場合、皆さんはどういう感じの命名にしていますでしょうか?
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。