Skip to content

Commit

Permalink
Update index.md
Browse files Browse the repository at this point in the history
  • Loading branch information
mfuji09 committed Apr 17, 2024
1 parent 11b574b commit 5d58018
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -59,8 +59,8 @@ console.log(getCharacterLength("A\uD87E\uDC04Z")); // 3
function getGraphemeCount(str) {
const segmenter = new Intl.Segmenter("ja-JP", { granularity: "grapheme" });

// ここで使用されているSegmentsオブジェクトのイテレーターは、文字を書記素で反復処理します。
// 文字は複数のUnicode文字で構成されている場合があります
// ここで使用されている Segments オブジェクトのイテレーターは、文字を書記素で反復処理します。
// 文字は複数の Unicode 文字で構成されている場合があります
return [...segmenter.segment(str)].length;
}

Expand Down

0 comments on commit 5d58018

Please sign in to comment.