UNPKG

@1771technologies/lytenyte-pro

Version:

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

9 lines (8 loc) 280 B
import { clampOffset } from "./clamp-offset.js"; const NEWLINE_CODE = 10; export function getLineEnd(source, offset) { let index = clampOffset(source, offset); while (index < source.length && source.charCodeAt(index) !== NEWLINE_CODE) index++; return index; }