-
Notifications
You must be signed in to change notification settings - Fork 9
/
index.ts
68 lines (66 loc) · 3.33 KB
/
index.ts
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
import jaco from './jaco';
export default jaco;
export { default as addSemivoicedMarks } from './fn/addSemivoicedMarks';
export { default as addVoicedMarks } from './fn/addVoicedMarks';
export { default as byteSize } from './fn/byteSize';
export { default as charAt } from './fn/charAt';
export { default as charCodeAt } from './fn/charCodeAt';
export { default as combinateSoundMarks } from './fn/combinateSoundMarks';
export { default as concat } from './fn/concat';
export { default as convertIterationMarks } from './fn/convertIterationMarks';
export {
default as convertProlongedSoundMarks
} from './fn/convertProlongedSoundMarks';
export { default as endWith } from './fn/endWith';
export { default as has } from './fn/has';
export { default as hasSmallLetter } from './fn/hasSmallLetter';
export { default as hasSurrogatePair } from './fn/hasSurrogatePair';
export { default as hasUnpairedSurrogate } from './fn/hasUnpairedSurrogate';
export { default as includes } from './fn/includes';
export { default as indexOf } from './fn/indexOf';
export { default as is } from './fn/is';
export { default as isEmpty } from './fn/isEmpty';
export { default as isNumeric } from './fn/isNumeric';
export { default as isOnly } from './fn/isOnly';
export { default as isOnlyHiragana } from './fn/isOnlyHiragana';
export { default as isOnlyKatakana } from './fn/isOnlyKatakana';
export { default as lastIndexOf } from './fn/lastIndexOf';
export { default as matches } from './fn/matches';
export { default as padEnd } from './fn/padEnd';
export { default as padStart } from './fn/padStart';
export { default as remove } from './fn/remove';
export {
default as removeUnpairedSurrogate
} from './fn/removeUnpairedSurrogate';
export { default as removeVoicedMarks } from './fn/removeVoicedMarks';
export { default as repeat } from './fn/repeat';
export { default as replace } from './fn/replace';
export { default as replaceFromMap } from './fn/replaceFromMap';
export { default as search } from './fn/search';
export { default as slice } from './fn/slice';
export { default as split } from './fn/split';
export { default as startsWith } from './fn/startsWith';
export { default as substr } from './fn/substr';
export { default as substring } from './fn/substring';
export { default as test } from './fn/test';
export { default as toBasicLetter } from './fn/toBasicLetter';
export { default as toHiragana } from './fn/toHiragana';
export { default as toKatakana } from './fn/toKatakana';
export { default as toNarrow } from './fn/toNarrow';
export { default as toNarrowAlphanumeric } from './fn/toNarrowAlphanumeric';
export { default as toNarrowJapanese } from './fn/toNarrowJapanese';
export { default as toNarrowKatakana } from './fn/toNarrowKatakana';
export { default as toNarrowSign } from './fn/toNarrowSign';
export {
default as toNarrowSymbolForJapanese
} from './fn/toNarrowSymbolForJapanese';
export { default as toNumeric } from './fn/toNumeric';
export { default as toPhoeticKana } from './fn/toPhoeticKana';
export { default as toWide } from './fn/toWide';
export { default as toWideAlphanumeric } from './fn/toWideAlphanumeric';
export { default as toWideJapanese } from './fn/toWideJapanese';
export { default as toWideKatakana } from './fn/toWideKatakana';
export { default as toWideSign } from './fn/toWideSign';
export {
default as toWideSymbolForJapanese
} from './fn/toWideSymbolForJapanese';