MyCrypto/common/libs/ens.ts

10 lines
205 B
TypeScript
Raw Normal View History

2017-06-26 15:27:55 -07:00
import uts46 from 'idna-uts46';
export function normalise(name: string): string {
2017-07-01 22:49:06 -07:00
try {
return uts46.toUnicode(name, { useStd3ASCII: true, transitional: false });
} catch (e) {
throw e;
}
2017-06-26 15:27:55 -07:00
}