(...args)
| 421 | return this.check((checks.minLength as any)(...args)); |
| 422 | }, |
| 423 | max(...args) { |
| 424 | return this.check((checks.maxLength as any)(...args)); |
| 425 | }, |
| 426 | length(...args) { |
| 427 | return this.check((checks.length as any)(...args)); |
| 428 | }, |
no test coverage detected