-
Notifications
You must be signed in to change notification settings - Fork 304
/
Copy pathlanguage.js
297 lines (249 loc) · 16.6 KB
/
language.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
namespace('String', function () {
'use strict';
var allZenkakuChars = ' 、。,.・:;?!ー~/|()[]{}「」+-=<>¥$¢£%#&*@0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyzァアィイゥウェエォオカガキギクグケゲコゴサザシジスズセゼソゾタダチヂッツヅテデトドナニヌネノハバパヒビピフブプヘベペホボポマミムメモャヤュユョヨラリルレロワヲン';
var allHankakuChars = ' 、。,.・:;?!ー~/|()[]{}「」+-=<>¥$¢£%#&*@0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyzァアィイゥウェエォオカガキギクグケゲコゴサザシジスズセゼソゾタダチヂッツヅテデトドナニヌネノハバパヒビピフブプヘベペホボポマミムメモャヤュユョヨラリルレロワヲン';
var allHiragana = 'ぁあぃいぅうぇえぉおかがきぎくぐけげこごさざしじすずせぜそぞただちぢっつづてでとどなにぬねのはばぱひびぴふぶぷへべぺほぼぽまみむめもゃやゅゆょよらりるれろゎわゐゑをんゔゕゖ';
var allKatakana = 'ァアィイゥウェエォオカガキギクグケゲコゴサザシジスズセゼソゾタダチヂッツヅテデトドナニヌネノハバパヒビピフブプヘベペホボポマミムメモャヤュユョヨラリルレロヮワヰヱヲンヴヵヶ';
method('isKatakana', function() {
test('ア', true);
test('ア', true);
test('ァ', true);
test('ah', false);
test('アイカムインピース', true);
test('アイカムinピース', false);
test('アイカム イン ピース', true);
});
method('hasKatakana', function() {
test('ア', true);
test('ア', true);
test('ah', false);
test('aアh', true);
test('aアh', true);
test('アイカムインピース', true);
test('アイカムinピース', true);
});
method('isHiragana', function() {
test('あ', true);
test('ぁ', true);
test('ah', false);
test('あいかむいんぴーす', true);
test('あいかむinぴーす', false);
test('あいかむ in ぴーす', false);
test('アイカム イン ピース', false);
});
method('hasHiragana', function() {
test('あ', true);
test('ぁ', true);
test('ah', false);
test('aあh', true);
test('aぁh', true);
test('あいかむいんぴーす', true);
test('あいかむinぴーす', true);
});
method('isKana', function() {
test('', false, 'blank');
test('あいうえお', true, 'hiragana');
test('アイウエオ', true, 'katakana');
test('あうえおアイウエオ', true, 'hiragana and katakan');
test('あうえおaeiouアイウエオ', false, 'hiragana, katakana, and romaji');
test(' あいうえお ', true, 'hiragana with whitespace');
test(' アイウエオ \n ', true, 'katakana with whitespace and a newline');
});
method('hasKana', function() {
test('', false, 'blank');
test('aeiou', false, 'romaji');
test('あいうえお', true, 'hiragana');
test('アイウエオ', true, 'katakana');
test('あうえおアイウエオ', true, 'hiragana and katakana');
test('あうえおaeiouアイウエオ', true, 'hiragana, katakana, and romaji');
test('aeiouアaeiou', true, 'katakana with romaji outside');
test('aeiouaeiou', false, 'romaji all the way');
});
method('isHan', function() {
test('', false, 'blank');
test('aeiou', false, 'romaji');
test('あいうえお', false, 'hiragana');
test('アイウエオ', false, 'katakana');
test('あうえおaeiouアイウエオ', false, 'hiragana, katakana, and romaji');
test('合コン', false, 'mixed kanji and katakana');
test('語学', true, 'kango');
test('庭には二羽鶏がいる。', false, 'full sentence');
test(' 語学 ', true, 'kango with whitespace');
test(' 語学\t ', true, 'kango with whitespace and tabs');
});
method('hasHan', function() {
test('', false, 'blank');
test('aeiou', false, 'romaji');
test('あいうえお', false, 'hiragana');
test('アイウエオ', false, 'katakana');
test('あうえおaeiouアイウエオ', false, 'hiragana, katakana, and romaji');
test('合コン', true, 'mixed kanji and katakana');
test('語学', true, 'kango');
test('庭には二羽鶏がいる。', true, 'full sentence');
test(' 語学 ', true, 'kango with whitespace');
test(' 語学\t ', true, 'kango with whitespace and tabs');
});
method('isKanji', function() {
test('', false, 'blank');
test('aeiou', false, 'romaji');
test('あいうえお', false, 'hiragana');
test('アイウエオ', false, 'katakana');
test('あうえおaeiouアイウエオ', false, 'hiragana, katakana, and romaji');
test('合コン', false, 'mixed kanji and katakana');
test('語学', true, 'kango');
test('庭には二羽鶏がいる。', false, 'full sentence');
test(' 語学 ', true, 'kango with whitespace');
test(' 語学\t ', true, 'kango with whitespace and tabs');
test(' 語 学\t ', true, 'middle whitespace is also not counted');
});
method('hasKanji', function() {
test('', false, ' blank');
test('aeiou', false, ' romaji');
test('あいうえお', false, ' hiragana');
test('アイウエオ', false, ' katakana');
test('あうえおaeiouアイウエオ', false, ' hiragana, katakana, and romaji');
test('合コン', true, ' mixed kanji and katakana');
test('語学', true, ' kango');
test('庭には二羽鶏がいる。', true, ' full sentence');
test(' 語学 ', true, ' kango with whitespace');
test(' 語学\t ', true, ' kango with whitespace and tabs');
});
method('isHangul', function() {
test('모', true, 'character');
test('난 뻔데기를 싫어 한 사람 이다...너는?', false, 'full sentence');
test('안녕 하세요', true, 'how are you?');
test('ㅠブラじゃない!', false, 'mixed with kana');
test('이것도 한굴이야', true, 'spaces do not count');
});
method('hasHangul', function() {
test('모', true, 'character');
test('난 뻔데기를 싫어 한 사람 이다...너는?', true, 'full sentence');
test('안녕 하세요.', true, 'how are you?');
test('ㅠブラじゃない!', false, 'mixed with kana');
});
method('isHebrew', function() {
test('שְׂרָאֵל', true, 'basic');
});
method('hasHebrew', function() {
test('שְׂרָאֵל', true, 'basic');
});
method('isDevanagari', function() {
test('सभी मनुष्यों', true, 'basic');
});
method('hasDevanagari', function() {
test('सभी मनुष्यों', true, 'basic');
});
method('isLatin', function() {
test('ā', true, 'Extended set A');
test('Ɖ', true, 'Extended set B');
test('これはミックスですよね。', false, 'Katakana hiragana mix');
test("l'année dernière", true, 'French');
test('これは one big mix ですよね。', false, 'Hiragana romaji mix');
});
method('hasLatin', function() {
test("l'année dernière", true, 'French');
test('これは one big mix ですよね。', true, 'Hiragana romaji mix');
test('ā', true, 'Extended set A');
test('Ɖ', true, 'Extended set B');
test('これはミックスですよね。', false, 'Katakana hiragana mix');
});
method('hankaku', function() {
test('カ', 'カ', 'カ');
test('ガ', 'ガ', 'dakuten | ガ');
test('', '', 'blank');
test('カタカナ', 'カタカナ', 'katakana');
test('こんにちは。ヤマダタロウです。', 'こんにちは。ヤマダタロウです。', ' hankaku katakana inside a string');
test('こんにちは。TARO YAMADAです。', 'こんにちは。TARO YAMADAです。', 'hankaku romaji inside a string');
test(' ', ' ', 'spaces');
test(' ', ['p'], ' ', 'punctuation | spaces');
test(' ', ['s'], ' ', 'spaces');
var barabara = 'こんにちは。タロウ YAMADAです。18才です!(笑)';
test(barabara, 'こんにちは。タロウ YAMADAです。18才です!(笑)', 'modes | full conversion');
test(barabara, ['all'], 'こんにちは。タロウ YAMADAです。18才です!(笑)', 'modes all | full conversion');
test(barabara, ['a'], 'こんにちは。タロウ YAMADAです。18才です!(笑)', 'modes | romaji only');
test(barabara, ['n'], 'こんにちは。タロウ YAMADAです。18才です!(笑)', 'modes | numbers only');
test(barabara, ['k'], 'こんにちは。タロウ YAMADAです。18才です!(笑)', 'modes | katakana only');
test(barabara, ['p'], 'こんにちは。タロウ YAMADAです。18才です!(笑)', 'modes | punctuation only');
test(barabara, ['s'], 'こんにちは。タロウ YAMADAです。18才です!(笑)', 'modes | spaces only');
test(barabara, ['an'], 'こんにちは。タロウ YAMADAです。18才です!(笑)', 'modes | alphabet and numbers');
test(barabara, ['ak'], 'こんにちは。タロウ YAMADAです。18才です!(笑)', 'modes | alphabet and katakana');
test(barabara, ['as'], 'こんにちは。タロウ YAMADAです。18才です!(笑)', 'modes | alphabet and spaces');
test(barabara, ['ap'], 'こんにちは。タロウ YAMADAです。18才です!(笑)', 'modes | alphabet and punctuation');
test(barabara, ['na'], 'こんにちは。タロウ YAMADAです。18才です!(笑)', 'modes reverse | alphabet and numbers');
test(barabara, ['ka'], 'こんにちは。タロウ YAMADAです。18才です!(笑)', 'modes reverse | alphabet and katakana');
test(barabara, ['sa'], 'こんにちは。タロウ YAMADAです。18才です!(笑)', 'modes reverse | alphabet and spaces');
test(barabara, ['pa'], 'こんにちは。タロウ YAMADAです。18才です!(笑)', 'modes reverse | alphabet and punctuation');
test(barabara, ['alphabet'], 'こんにちは。タロウ YAMADAです。18才です!(笑)', 'modes full | alphabet');
test(barabara, ['numbers'], 'こんにちは。タロウ YAMADAです。18才です!(笑)', 'modes full | numbers');
test(barabara, ['katakana'], 'こんにちは。タロウ YAMADAです。18才です!(笑)', 'modes full | katakana');
test(barabara, ['punctuation'], 'こんにちは。タロウ YAMADAです。18才です!(笑)', 'modes full | punctuation');
test(barabara, ['spaces'], 'こんにちは。タロウ YAMADAです。18才です!(笑)', 'modes full | spaces');
test('-', '-', 'Full-width hyphen should be converted to half-width');
test('ー', ['n'], '-', 'KATAKANA-HIRAGANA PROLONGED SOUND MARK converted to hyphen in number mode');
test('−', ['n'], '-', 'MINUS SIGN converted to hyphen in number mode');
test('ー', ['a'], 'ー', 'KATAKANA-HIRAGANA PROLONGED SOUND MARK not converted to hyphen in alphabet mode');
test('−', ['a'], '−', 'MINUS SIGN not converted to hyphen in alphabet mode');
test('ー', 'ー', 'KATAKANA-HIRAGANA PROLONGED SOUND MARK not converted to hyphen in "all" mode');
test('−', '-', 'MINUS SIGN still converted to hyphen in "all" mode');
test(allZenkakuChars, allHankakuChars, 'everything');
});
method('zenkaku', function() {
test('', '', 'blank');
test('カ', 'カ', 'カ');
test('ガ', 'ガ', 'dakuten | カ');
test('カタカナ', 'カタカナ', 'katakana');
test(' ', ' ', 'spaces | all');
test(' ', ['s'], ' ', 'spaces | s');
test(' ', ['p'], ' ', 'spaces | p');
var barabara = 'こんにちは。タロウ YAMADAです。18才です!(笑)';
test(barabara, 'こんにちは。タロウ YAMADAです。18才です!(笑)', 'modes | full conversion');
test(barabara, ['a'], 'こんにちは。タロウ YAMADAです。18才です!(笑)', 'modes | alphabet');
test(barabara, ['n'], 'こんにちは。タロウ YAMADAです。18才です!(笑)', 'modes | number');
test(barabara, ['k'], 'こんにちは。タロウ YAMADAです。18才です!(笑)', 'modes | katakana');
test(barabara, ['p'], 'こんにちは。タロウ YAMADAです。18才です!(笑)', 'modes | punctuation');
test(barabara, ['s'], 'こんにちは。タロウ YAMADAです。18才です!(笑)', 'modes | spaces');
test(barabara, ['an'], 'こんにちは。タロウ YAMADAです。18才です!(笑)', 'modes | alphabet and numbers');
test(barabara, ['ak'], 'こんにちは。タロウ YAMADAです。18才です!(笑)', 'modes | alphabet and katakana');
test(barabara, ['as'], 'こんにちは。タロウ YAMADAです。18才です!(笑)', 'modes | alphabet and spaces');
test(barabara, ['ap'], 'こんにちは。タロウ YAMADAです。18才です!(笑)', 'modes | alphabet and punctuation');
test(barabara, ['na'], 'こんにちは。タロウ YAMADAです。18才です!(笑)', 'modes reverse | alphabet and numbers');
test(barabara, ['ka'], 'こんにちは。タロウ YAMADAです。18才です!(笑)', 'modes reverse | alphabet and katakana');
test(barabara, ['sa'], 'こんにちは。タロウ YAMADAです。18才です!(笑)', 'modes reverse | alphabet and spaces');
test(barabara, ['pa'], 'こんにちは。タロウ YAMADAです。18才です!(笑)', 'modes reverse | alphabet and punctuation');
test(barabara, ['alphabet'], 'こんにちは。タロウ YAMADAです。18才です!(笑)', 'modes full | alphabet');
test(barabara, ['numbers'], 'こんにちは。タロウ YAMADAです。18才です!(笑)', 'modes full | numbers');
test(barabara, ['katakana'], 'こんにちは。タロウ YAMADAです。18才です!(笑)', 'modes full | katakana');
test(barabara, ['spaces'], 'こんにちは。タロウ YAMADAです。18才です!(笑)', 'modes full | spaces');
test(barabara, ['punctuation'], 'こんにちは。タロウ YAMADAです。18才です!(笑)', 'modes full | punctuation');
test('-', '-', 'Half-width hyphen should be converted to full-width');
test('-', ['p'], '-', 'Half-width hyphen should be converted to full-width in punctuation mode');
test('-', ['n'], '-', 'Half-width hyphen should be converted to full-width in number mode');
test('ー', 'ー', 'KATAKANA-HIRAGANA PROLONGED SOUND MARK converted to full-width');
test(allHankakuChars, allZenkakuChars, 'everything');
});
method('hiragana', function() {
var barabara = 'こんにちは。タロウ YAMADAです。18才です!(笑)';
test('', '', 'blank');
test('カ', 'か', 'カ');
test('ガ', 'が', 'dakuten | カ');
test('カタカナ', 'かたかな', 'from katakana');
test('カタカナ', 'かたかな', 'convert from hankaku katakana');
test(barabara, 'こんにちは。たろう YAMADAです。18才です!(笑)', 'full string');
test('カタカナ', [false], 'カタカナ', 'no widths |convert from hankaku katakana');
test(barabara, [false], 'こんにちは。タロウ YAMADAです。18才です!(笑)', 'no widths | full string');
test(allKatakana, allHiragana, 'all');
});
method('katakana', function() {
var barabara = 'こんにちは。タロウ YAMADAです。18才です!(笑)';
test('', '', 'blank');
test('か', 'カ', 'か');
test('ひらがな', 'ヒラガナ', 'from hiragana');
test(barabara, 'コンニチハ。タロウ YAMADAデス。18才デス!(笑)', 'full string');
test(allHiragana, allKatakana, 'all');
});
group('Method Inverses', function() {
equal(run(run('こんにちは。タロウ YAMADAです。18才です!(笑)', 'katakana'), 'hankaku'), 'コンニチハ。タロウ YAMADAデス。18才デス!(笑)', 'full string to katakana and hankaku');
equal(run(run('こんにちは。タロウ YAMADAです。18才です!(笑)', 'zenkaku'), 'hiragana'), 'こんにちは。たろう YAMADAです。18才です!(笑)', 'full string to zenkaku');
equal(run(run('こんにちは。タロウ YAMADAです。18才です!(笑)', 'zenkaku'), 'katakana'), 'コンニチハ。タロウ YAMADAデス。18才デス!(笑)', 'full string to zenkaku');
});
});