Re: [whatwg/url] IDNA Nontransitional_Processing (#239)

The Node.js implementation is using nontransitional also...

```js
> var u = new url.URL('https://x/');
undefined
> u.host = 'faß.de'
'faß.de'
> u.host
'xn--fa-hia.de'
>
```

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/whatwg/url/issues/239#issuecomment-278688500

Received on Thursday, 9 February 2017 16:11:10 UTC