// Must contain a letter, and be made of word characters only const VARIABLE_NAME_REGEX = /^[a-z][\w-]*$/i; export default VARIABLE_NAME_REGEX;