Compare commits

..

No commits in common. "c767e73f0af5726ce78374b37328fae83508ee1f" and "0bfa3b32bd0702f300dd5ed49e32e1d9e497a2be" have entirely different histories.

3 changed files with 13 additions and 19 deletions

View File

@ -1,9 +1,5 @@
# ChangeLog
## 2020-07-05 (0.0.7)
- fix array check contains type
## 2020-07-04 (0.0.6)
- add array validate contains type

View File

@ -1,6 +1,6 @@
{
"name": "mtfos-validator",
"version": "0.0.7",
"version": "0.0.6",
"description": "",
"main": "index.js",
"scripts": {

View File

@ -61,22 +61,20 @@ class TypeArray extends Base {
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._itemTypes.length > 0) {
for (const item of value) {
let verified = false
let fail = ''
for (const type of this._itemTypes) {
const result = type.validate(item)
if (result) {
fail = result
} else {
verified = true
fail = ''
break
}
for (const item of value) {
let verified = false
let fail = ''
for (const type of this._itemTypes) {
const result = type.validate(item)
if (result) {
fail = result
} else {
verified = true
fail = ''
break
}
if (!verified || fail) return fail || `item type not match`
}
if (!verified || fail) return fail || `item type not match`
}
return null