(...args)
| 409 | return this.check((checks.regex as any)(...args)); |
| 410 | }, |
| 411 | includes(...args) { |
| 412 | return this.check((checks.includes as any)(...args)); |
| 413 | }, |
| 414 | startsWith(...args) { |
| 415 | return this.check((checks.startsWith as any)(...args)); |
| 416 | }, |