blob: ec530e7c0a4a89fd2a6ecb7fa9ad95641d0c5c64 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
import { assertEquals } from "../base.ts";
import "../../util/japanese.ts";
Deno.test("Japanese utils - Katakana widening", async () => {
const input = "これが オレのウィンターバケーション スタイル!";
const output = "これが オレのウィンターバケーション スタイル!";
assertEquals(input.widenKatakana(), output);
});
Deno.test("Japanese utils - Kana normalize", async () => {
const input = "これが オレのウィンターバケーション スタイル!";
const output = "これが おれのうぃんたーばけーしょん すたいる!";
assertEquals(input.normalizeKana(), output);
});
|