mirror of
https://github.com/denoland/deno.git
synced 2024-11-23 15:16:54 -05:00
30 lines
726 B
Rust
30 lines
726 B
Rust
// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
|
|
|
|
use deno_core::error::AnyError;
|
|
use deno_core::op2;
|
|
|
|
#[op2]
|
|
#[string]
|
|
pub fn op_node_idna_domain_to_ascii(
|
|
#[string] domain: String,
|
|
) -> Result<String, AnyError> {
|
|
Ok(idna::domain_to_ascii(&domain)?)
|
|
}
|
|
|
|
#[op2]
|
|
#[string]
|
|
pub fn op_node_idna_domain_to_unicode(#[string] domain: String) -> String {
|
|
idna::domain_to_unicode(&domain).0
|
|
}
|
|
|
|
#[op2]
|
|
#[string]
|
|
pub fn op_node_idna_punycode_decode(#[string] domain: String) -> String {
|
|
idna::punycode::decode_to_string(&domain).unwrap_or_default()
|
|
}
|
|
|
|
#[op2]
|
|
#[string]
|
|
pub fn op_node_idna_punycode_encode(#[string] domain: String) -> String {
|
|
idna::punycode::encode_str(&domain).unwrap_or_default()
|
|
}
|