- From: Anne van Kesteren <notifications@github.com>
- Date: Fri, 05 May 2017 03:52:57 -0700
- To: whatwg/encoding <encoding@noreply.github.com>
- Cc: Subscribed <subscribed@noreply.github.com>
Received on Friday, 5 May 2017 10:53:32 UTC
```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