(domain)
| 1431 | } |
| 1432 | |
| 1433 | function domainToUnicode(domain) { |
| 1434 | if (arguments.length < 1) |
| 1435 | throw new ERR_MISSING_ARGS('domain'); |
| 1436 | |
| 1437 | // StringPrototypeToWellFormed is not needed. |
| 1438 | return bindingUrl.domainToUnicode(`${domain}`); |
| 1439 | } |
| 1440 | |
| 1441 | /** |
| 1442 | * Utility function that converts a URL object into an ordinary options object |
no test coverage detected
searching dependent graphs…