-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstring.ts
57 lines (44 loc) · 1.31 KB
/
string.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
import { assert } from "./control.ts";
/** Converts kebab-, snake-cased or whitespaced string to camelCase */
export function camelize(str: string) {
let camelized = "";
let toCapital = false;
for (const char of str) {
if (char === "_" || char === "-" || char === " ") {
toCapital = true;
continue;
}
if (toCapital) {
camelized += char.toUpperCase();
toCapital = false;
continue;
}
camelized += char.toLowerCase();
}
return camelized;
}
export function hammingDistance(str1: string, str2: string): number {
assert(str1.length !== str2.length, "Strings should be the same length");
let count = 0;
for (let i = 0; i < str1.length; i++) {
if (str1[i] !== str2[i]) {
count++;
}
}
return count;
}
export function truncate(str: string, num = 50, ellipsis = "…"): string {
return str.length >= num
? str.slice(0, num >= ellipsis.length ? num - ellipsis.length : num) +
ellipsis
: str;
}
export function toSlug(str: string): string {
return str.toLowerCase().split(" ").join("-").replace(/[^a-zA-Z0-9-_]/g, "");
}
export function insertAt(str: string, idx: number, append: string) {
return str.slice(0, idx) + append + str.slice(idx);
}
export function abc(idx: number) {
return String.fromCharCode("A".charCodeAt(0) + idx);
}