mirror of
https://github.com/baptisteArno/typebot.io.git
synced 2026-06-19 21:04:33 +08:00
6 lines
172 B
TypeScript
6 lines
172 B
TypeScript
export const isSingleVariable = (value: string | undefined): boolean =>
|
|
!!value &&
|
|
value.startsWith('{{') &&
|
|
value.endsWith('}}') &&
|
|
value.split('{{').length === 2
|