mirror of
https://github.com/status-im/MyCrypto.git
synced 2025-01-10 11:05:47 +00:00
11 lines
214 B
JavaScript
11 lines
214 B
JavaScript
// @flow
|
|
import uts46 from 'idna-uts46';
|
|
|
|
export function normalise(name: string): string {
|
|
try {
|
|
return uts46.toUnicode(name, { useStd3ASCII: true, transitional: false });
|
|
} catch (e) {
|
|
throw e;
|
|
}
|
|
}
|