hotfix/array-check-contains-type #20

Merged
root merged 8 commits from hotfix/array-check-contains-type into develop 2020-07-05 05:31:08 +00:00
1 changed files with 14 additions and 12 deletions
Showing only changes of commit b282f241a6 - Show all commits

View File

@ -61,6 +61,7 @@ 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 = ''
@ -76,6 +77,7 @@ 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
} }