(...args)
| 418 | return this.check((checks.endsWith as any)(...args)); |
| 419 | }, |
| 420 | min(...args) { |
| 421 | return this.check((checks.minLength as any)(...args)); |
| 422 | }, |
| 423 | max(...args) { |
| 424 | return this.check((checks.maxLength as any)(...args)); |
| 425 | }, |
no test coverage detected