Re: [whatwg/encoding] Half-width Katakana should be representable in ISO-2022-JP (#105)

```js
const start = 0xFF65,
      end = 0xFF90;
for(let i = start; i < end; i++) {
  const cp = String.fromCodePoint(i),
        fullwidthCP = cp.normalize("NFKC");
  // ...
}
```
If I write those out and use @hsivonen's demo I get the results I was expecting per the above analysis.

-- 
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/encoding/issues/105#issuecomment-299435852

Received on Friday, 5 May 2017 10:53:32 UTC