-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.ts
170 lines (161 loc) · 4.68 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
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
const REGEX_SPLIT = /(?<=[a-z0-9])(?=[A-Z0-9])|(?<=[A-Z0-9])(?=[A-Z0-9][a-z0-9])|[^\w]+|_/;
const DEFAULT_CASING_ARRAY: {[K in Casing]: Options} = {
flat: {
separator: "",
leadCharCase: "lower",
firstCharCase: "lower",
case: "lower"
},
camel: {
separator: "",
leadCharCase: "upper",
firstCharCase: "lower",
case: "lower"
},
header: {
separator: "-",
leadCharCase: "upper",
firstCharCase: "upper",
case: "lower"
},
kebab: {
separator: "-",
leadCharCase: "lower",
firstCharCase: "lower",
case: "lower"
},
pascal: {
separator: "",
leadCharCase: "upper",
firstCharCase: "upper",
case: "lower"
},
snake: {
separator: "_",
leadCharCase: "lower",
firstCharCase: "lower",
case: "lower"
},
upper: {
separator: "_",
leadCharCase: "upper",
firstCharCase: "upper",
case: "upper"
},
train: {
separator: "-",
leadCharCase: "upper",
firstCharCase: "upper",
case: "upper"
}
};
/**
* Converts a string to the given case.
* @param data String to convert.
* @param casing Options to use or predefined casing name.
* @param abbr Keep abbreviations.
* @return String with converted case.
* @example
* ```ts
* convert("camelCase", "kebab"); // "camel-case"
* convert("HTMLElement", "camel", true); // "HTMLElement"
* convert("HTMLElement", "camel", false); // "HtmlElement"
* convert("camelCase", {separator: "-", leadCharCase: "lower", firstCharCase: "upper", case: "lower"}); // "Camel-case"
* ```
*/
export function convert(data: string, casing: Partial<Options> | keyof typeof DEFAULT_CASING_ARRAY, abbr: boolean = true): string {
const config = typeof casing === "string" ? DEFAULT_CASING_ARRAY[casing] : {...DEFAULT_CASING_ARRAY.flat, ...casing};
return config ? split(data).map((w, i) => abbr && w.toUpperCase() === w ? w : w[0][!i && config.firstCharCase === "lower" || i && config.leadCharCase === "lower" ? "toLowerCase" : "toUpperCase"]() + w.substring(1)[config.case === "lower" ? "toLowerCase" : "toUpperCase"]()).join(config.separator) : data;
}
/**
* Detects in which case the string is written.
* @param data The string which case to detect.
* @returns Detected case or null if the case cannot be detected.
* @example
* ```ts
* detect("camelCase"); // "camel"
* detect("This is a string"); // null
* ```
*/
export function detect(data: string): Casing | null {
if (!data)
return null;
const chars = data.replace(/[\p{L}\p{N}]+/gui, "").split("");
// @ts-ignore
const separator = chars.length ? chars.reduce((prev, current) => prev === current ? prev : null) : "";
if (separator == null)
return null;
if (data.toLowerCase() === data) {
if (separator === "_")
return "snake";
if (separator === "-")
return "kebab";
return "flat";
} else if (data.toUpperCase() === data) {
if (separator === "_")
return "upper";
if (separator === "-")
return "train";
} else {
if (convert(data, "camel") === data)
return "camel";
if (convert(data, "pascal") === data)
return "pascal";
if (convert(data, "header") === data)
return "header";
}
return null;
}
/**
* Splits the string into array of words that this string consists of, preserving the case.
* @param string String to split.
* @returns Array of words.
* @example
* ```ts
* split(""); // []
* split("camelCase"); // ["camel", "Case"]
* split("HTMLElement"); // ["HTML", "Element"]
* split("function_name"); // ["function", "name"]
* ```
*/
export function split(string: string): string[] {
return string.split(REGEX_SPLIT).filter(s => !!s);
}
type Casing = "flat" | "camel" | "header" | "kebab" | "pascal" | "snake" | "upper" | "train";
type Options = {
/**
* Which string to use as a separator between words.
* @example
* ```ts
* convert("camelCase", {separator: "-", ...}); // "camel-Case"
* ```
*/
separator: string;
/**
* Case of the first letters of every word except for the first one. Available values are "upper" and "lower".
* @example
* ``ts
* convert("LeadCharCase", {leadCharCase: "upper", ...}); // "LeadCharCase"
* convert("LeadCharCase", {leadCharCase: "lower", ...}); // "Leadcharcase"
* ```
*/
leadCharCase: "upper" | "lower";
/**
* Case of the very first char in the string. Available values are "upper" and "lower".
* @example
* ```ts
* convert("firstCharCase", {firstCharCase: "upper", ...}); // "FirstCharCase"
* convert("firstCharCase", {firstCharCase: "lower", ...}); // "firstCharCase"
* ```
*/
firstCharCase: "upper" | "lower";
/**
* Case of all other chars in the string. Available values are "upper" and "lower".
* @example
* ```ts
* convert("string", {case: "upper", ...}); // "STRING"
* convert("string", {case: "lower", ...}); // "string"
* ```
*/
case: "upper" | "lower";
}