11 lines
214 B
JavaScript
Raw Normal View History

2017-06-27 02:27:55 +04:00
// @flow
import uts46 from 'idna-uts46';
export function normalise(name: string): string {
2017-07-02 00:49:06 -05:00
try {
return uts46.toUnicode(name, { useStd3ASCII: true, transitional: false });
} catch (e) {
throw e;
}
2017-06-27 02:27:55 +04:00
}