bpms_site/.svn/pristine/2f/2fec23f6100745aacba6a78f28ff220a43871bef.svn-base
2025-11-02 16:38:49 +03:30

16 lines
389 B
Plaintext

"use strict";
Object.defineProperty(exports, "__esModule", {
value: true
});
Object.defineProperty(exports, "isGroupSegment", {
enumerable: true,
get: function() {
return isGroupSegment;
}
});
function isGroupSegment(segment) {
// Use array[0] for performant purpose
return segment[0] === "(" && segment.endsWith(")");
}
//# sourceMappingURL=segment.js.map