2023-02-14 11:38:45 -05:00
|
|
|
// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
|
|
|
|
|
2023-03-08 06:44:54 -05:00
|
|
|
import { ucs2 } from "ext:deno_node/internal/idna.ts";
|
2023-02-20 12:47:42 -05:00
|
|
|
|
|
|
|
const { ops } = globalThis.__bootstrap.core;
|
|
|
|
|
|
|
|
function toASCII(domain) {
|
|
|
|
return ops.op_node_idna_domain_to_ascii(domain);
|
|
|
|
}
|
|
|
|
|
|
|
|
function toUnicode(domain) {
|
|
|
|
return ops.op_node_idna_domain_to_unicode(domain);
|
|
|
|
}
|
|
|
|
|
|
|
|
function decode(domain) {
|
|
|
|
return ops.op_node_idna_punycode_decode(domain);
|
|
|
|
}
|
|
|
|
|
|
|
|
function encode(domain) {
|
|
|
|
return ops.op_node_idna_punycode_encode(domain);
|
|
|
|
}
|
2023-02-14 11:38:45 -05:00
|
|
|
|
|
|
|
export { decode, encode, toASCII, toUnicode, ucs2 };
|
|
|
|
|
|
|
|
export default {
|
|
|
|
decode,
|
|
|
|
encode,
|
|
|
|
toASCII,
|
|
|
|
toUnicode,
|
|
|
|
ucs2,
|
|
|
|
};
|