(email, options)
| 353 | } |
| 354 | |
| 355 | checkEmail(email, options) { |
| 356 | validateString(email, 'email'); |
| 357 | return this[kHandle].checkEmail(email, getFlags(options)); |
| 358 | } |
| 359 | |
| 360 | checkIP(ip, options) { |
| 361 | validateString(ip, 'ip'); |
no test coverage detected