in packages/selector/src/text/code-point-seeker.ts [191:194]
function endsWithinCharacter(s: string) { const codeUnit = s.charCodeAt(s.length - 1); return 0xd800 <= codeUnit && codeUnit <= 0xdbff; }