UNPKG

@1771technologies/lytenyte-pro

Version:

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

7 lines (6 loc) 230 B
export function getRequestId(path, start, end) { if (path.length === 0) return `__ROOT__/${start}-${end}`; const key = path.map((s) => (s == null ? `__null__` : s)).join("/") + `${start}-${end}`; return key; }