@apigames/json
Advanced tools
Comparing version 1.0.20 to 1.0.21
@@ -6,3 +6,3 @@ { | ||
"license": "UNLICENSED", | ||
"version": "1.0.20", | ||
"version": "1.0.21", | ||
"main": "index.js", | ||
@@ -9,0 +9,0 @@ "scripts": { |
@@ -16,5 +16,5 @@ class SystemTypeDatetimeSchema { | ||
maxLength: 29, | ||
pattern: "^([1-2][0-9]{3}" + //year | ||
"-((0[1-9])|(1[0-2]))" + //month | ||
"-((0[1-9])|([1-2][0-9])|(3[0-1])))" + //day | ||
pattern: "^([1-2][0-9]{3})" + //year | ||
"(-((0[1-9])|(1[0-2])))" + //month | ||
"(-((0[1-9])|([1-2][0-9])|(3[0-1])))" + //day | ||
"(T)" + //beginning of a time section | ||
@@ -21,0 +21,0 @@ "((([0-1][0-9])|(2[0-3])):)" + //hours |
26278