(name, options)
| 348 | } |
| 349 | |
| 350 | checkHost(name, options) { |
| 351 | validateString(name, 'name'); |
| 352 | return this[kHandle].checkHost(name, getFlags(options)); |
| 353 | } |
| 354 | |
| 355 | checkEmail(email, options) { |
| 356 | validateString(email, 'email'); |
no test coverage detected