/
githubmirror
/
novu
Обзор
Документация
Войти
/
githubmirror
/
novu
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
next
apps/dashboard/src/components/primitives/variable-plugin/utils.ts
8 строк
398 B
Paweł Tymczuk
feat(dashboard): edit layout - maily and html editors fixes NV-6210 (#8641)
04 июл 2025, 18:29
Не верифицирован
04 июл 2025, 18:29
571714f
Код
Авторство
О чём код?
export function isTypingVariable(content: string, pos: number): boolean { const beforeCursor = content.slice(0, pos); const afterCursor = content.slice(pos); const lastOpenBrackets = beforeCursor.lastIndexOf('{{'); const nextCloseBrackets = afterCursor.indexOf('}}'); return lastOpenBrackets !== -1 && (nextCloseBrackets === -1 || beforeCursor.indexOf('}}', lastOpenBrackets) === -1); }