/** * Regex checking for function calls * * @private * @memberof EvalRegex */ const REGEX_IS_FUNCTION_CALL = /^.+\(.*\)$/; export default REGEX_IS_FUNCTION_CALL;