From efa468bac528702b5c885401c19912bda9bf381f Mon Sep 17 00:00:00 2001 From: HelderSepu Date: Sat, 21 Oct 2017 13:20:48 -0400 Subject: [PATCH] remove semicolon --- src/core/utils.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/utils.js b/src/core/utils.js index e6af2862..435f4cb0 100644 --- a/src/core/utils.js +++ b/src/core/utils.js @@ -537,7 +537,7 @@ export const validateMinLength = (val, min) => { } export const validatePattern = (val, rxPattern) => { - var patt = new RegExp(rxPattern); + var patt = new RegExp(rxPattern) if (!patt.test(val)) { return "Value must follow pattern " + rxPattern }