mirror of
https://github.com/denoland/deno.git
synced 2024-11-22 15:06:54 -05:00
ac4a5f74b8
Fork PR: https://github.com/denoland/TypeScript/pull/10 Closes #23080
16 lines
464 B
TypeScript
16 lines
464 B
TypeScript
// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
|
|
|
|
import * as punycode from "node:punycode";
|
|
import { assertEquals } from "@std/assert/mod.ts";
|
|
|
|
Deno.test("regression #19214", () => {
|
|
const input = "个\uFFFD\uFFFD.hk";
|
|
|
|
assertEquals(punycode.toASCII(input), "xn--ciq6844ba.hk");
|
|
|
|
assertEquals(punycode.toUnicode("xn--ciq6844ba.hk"), input);
|
|
});
|
|
|
|
Deno.test("Decode empty input", () => {
|
|
assertEquals(punycode.decode(""), "");
|
|
});
|