(...args)
| 412 | return this.check((checks.includes as any)(...args)); |
| 413 | }, |
| 414 | startsWith(...args) { |
| 415 | return this.check((checks.startsWith as any)(...args)); |
| 416 | }, |
| 417 | endsWith(...args) { |
| 418 | return this.check((checks.endsWith as any)(...args)); |
| 419 | }, |