UNPKG

@1771technologies/lytenyte-pro

Version:

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

8 lines (7 loc) 299 B
export function getIndentation(text, cursorPosition) { const textBeforeCursor = text.substring(0, cursorPosition); const lines = textBeforeCursor.split("\n"); const currentLine = lines[lines.length - 1]; const match = currentLine.match(/^(\s*)/); return match ? match[1] : ""; }