Skip to content

Commit 70b189e

Browse files
committed
Format
1 parent 55b1071 commit 70b189e

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

src/guard/string.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -116,10 +116,10 @@ function NextGraphemeClusterIndex(value: string, clusterStart: number): number {
116116
// --------------------------------------------------------------------------
117117
function IsGraphemeCodePoint(value: number): boolean {
118118
return (
119-
IsHighSurrogate(value) || // High surrogate
120-
IsCombiningMark(value) || // Combining marks
121-
IsVariationSelector(value) || // Variation selectors
122-
IsZeroWidthJoiner(value) // Zero-width joiner
119+
IsHighSurrogate(value) ||
120+
IsCombiningMark(value) ||
121+
IsVariationSelector(value) ||
122+
IsZeroWidthJoiner(value)
123123
)
124124
}
125125
// --------------------------------------------------------------------------

0 commit comments

Comments
 (0)