UNPKG

@1771technologies/lytenyte-pro

Version:

Blazingly fast headless React data grid with 100s of features.

9 lines (8 loc) 274 B
import { clampOffset } from "./clamp-offset.js"; const NEWLINE_CODE = 10; export function getLineStart(source, offset) { let index = clampOffset(source, offset); while (index > 0 && source.charCodeAt(index - 1) !== NEWLINE_CODE) index--; return index; }