6 lines
179 B
Plaintext
6 lines
179 B
Plaintext
export function isGroupSegment(segment) {
|
|
// Use array[0] for performant purpose
|
|
return segment[0] === "(" && segment.endsWith(")");
|
|
}
|
|
|
|
//# sourceMappingURL=segment.js.map |