MCPcopy Create free account
hub / github.com/TextGeneratorio/text-generator.io / equalCursorPos

Function equalCursorPos

static/libs/codemirror.js:498–498  ·  view source on GitHub ↗
(a, b)

Source from the content-addressed store, hash-verified

496function cmp(a, b) { return a.line - b.line || a.ch - b.ch }
497
498function equalCursorPos(a, b) { return a.sticky == b.sticky && cmp(a, b) == 0 }
499
500function copyPos(x) {return Pos(x.line, x.ch)}
501function maxPos(a, b) { return cmp(a, b) < 0 ? b : a }

Callers 2

codemirror.jsFile · 0.85
findPosHFunction · 0.85

Calls 1

cmpFunction · 0.85

Tested by

no test coverage detected