1 Commits

Author SHA1 Message Date
root 0bfa3b32bd Merge pull request '[chore] bump version and changelog' (#18) from release/0.0.6 into develop
continuous-integration/drone/push Build is passing
Reviewed-on: #18
2020-07-04 14:36:05 +00:00
3 changed files with 13 additions and 19 deletions
-4
View File
@@ -1,9 +1,5 @@
# ChangeLog # ChangeLog
## 2020-07-05 (0.0.7)
- fix array check contains type
## 2020-07-04 (0.0.6) ## 2020-07-04 (0.0.6)
- add array validate contains type - add array validate contains type
+1 -1
View File
@@ -1,6 +1,6 @@
{ {
"name": "mtfos-validator", "name": "mtfos-validator",
"version": "0.0.7", "version": "0.0.6",
"description": "", "description": "",
"main": "index.js", "main": "index.js",
"scripts": { "scripts": {
-2
View File
@@ -61,7 +61,6 @@ class TypeArray extends Base {
if (this._min !== null && value.length < this._min) return `value length < ${this._min}` if (this._min !== null && value.length < this._min) return `value length < ${this._min}`
if (this._max !== null && value.length > this._max) return `value length > ${this._max}` if (this._max !== null && value.length > this._max) return `value length > ${this._max}`
if (this._itemTypes.length > 0) {
for (const item of value) { for (const item of value) {
let verified = false let verified = false
let fail = '' let fail = ''
@@ -77,7 +76,6 @@ class TypeArray extends Base {
} }
if (!verified || fail) return fail || `item type not match` if (!verified || fail) return fail || `item type not match`
} }
}
return null return null
} }