Skip to content

Commit 2efbc12

Browse files
committed
idna: use url module instead of punycode
1 parent 5d240c5 commit 2efbc12

File tree

4 files changed

+9
-4
lines changed

4 files changed

+9
-4
lines changed

doc/api/intl.md

+2
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,7 @@ option:
5151
| `String.prototype.toLocale*Case()` | partial (not locale-aware) | full | full | full |
5252
| [`Number.prototype.toLocaleString()`][] | partial (not locale-aware) | partial/full (depends on OS) | partial (English-only) | full |
5353
| `Date.prototype.toLocale*String()` | partial (not locale-aware) | partial/full (depends on OS) | partial (English-only) | full |
54+
| [Legacy URL Parser][] | partial (no IDN support) | full | full | full |
5455
| [WHATWG URL Parser][] | partial (no IDN support) | full | full | full |
5556
| [`require('buffer').transcode()`][] | none (function does not exist) | full | full | full |
5657
| [REPL][] | partial (inaccurate line editing) | full | full | full |
@@ -195,6 +196,7 @@ to be helpful:
195196
[ICU]: http://site.icu-project.org/
196197
[REPL]: repl.md#repl_repl
197198
[Test262]: https://github.com/tc39/test262/tree/HEAD/test/intl402
199+
[Legacy URL parser]: url.md#url_legacy_url_api
198200
[WHATWG URL parser]: url.md#url_the_whatwg_url_api
199201
[`--icu-data-dir`]: cli.md#cli_icu_data_dir_file
200202
[`Date.prototype.toLocaleString()`]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date/toLocaleString

lib/internal/idna.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,6 @@ if (internalBinding('config').hasIntl) {
44
const { toASCII, toUnicode } = internalBinding('icu');
55
module.exports = { toASCII, toUnicode };
66
} else {
7-
const { toASCII, toUnicode } = require('punycode');
8-
module.exports = { toASCII, toUnicode };
7+
const { domainToASCII, domainToUnicode } = require('internal/url');
8+
module.exports = { toASCII: domainToASCII, toUnicode: domainToUnicode };
99
}

test/parallel/test-bootstrap-modules.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@ if (!common.isMainThread) {
150150
if (common.hasIntl) {
151151
expectedModules.add('Internal Binding icu');
152152
} else {
153-
expectedModules.add('NativeModule punycode');
153+
expectedModules.add('NativeModule url');
154154
}
155155

156156
if (process.features.inspector) {

test/parallel/test-url-format.js

+4-1
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,11 @@
11
'use strict';
2-
require('../common');
2+
const common = require('../common');
33
const assert = require('assert');
44
const url = require('url');
55

6+
if (!common.hasIntl)
7+
common.skip('missing Intl');
8+
69
// Formatting tests to verify that it'll format slightly wonky content to a
710
// valid URL.
811
const formatTests = {

0 commit comments

Comments
 (0)