File size: 107 Bytes
d9494a5
 
 
1
2
3
4
export const isValidVariable = (variable: string): boolean => {
  return /^{{[^{}]+}}$/.test(variable);
};