(...args)
| 424 | return this.check((checks.maxLength as any)(...args)); |
| 425 | }, |
| 426 | length(...args) { |
| 427 | return this.check((checks.length as any)(...args)); |
| 428 | }, |
| 429 | nonempty(...args) { |
| 430 | return this.check((checks.minLength as any)(1, ...args)); |
| 431 | }, |