feat 236,284 全半角の改修コミット

This commit is contained in:
kanarutsuda
2024-06-13 15:20:04 +09:00
parent 80694ee49c
commit 5f2059fd6a
2 changed files with 2 additions and 2 deletions

View File

@@ -75,7 +75,7 @@ export class FullWidthAction implements IAction{
return result;
}
}
//全て全角の文字列の場合はtrue、そうでない場合はfalse
// 全て全角の文字列の場合はtrue、そうでない場合はfalse
containsFullWidthChars(text: string): boolean {
// 半角英数字カナ記号を除外

View File

@@ -72,7 +72,7 @@ export class HalfWidthAction implements IAction{
return result;
}
}
//全て全角の文字列の場合はtrue、そうでない場合はfalse
// 全て全角の文字列の場合はtrue、そうでない場合はfalse
containsHalfWidthChars(text: string): boolean {
const checkRegex = "^[\x01-\x7E\uFF61-\uFF9F]+$";