-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstringmanip.ts
63 lines (55 loc) · 1.94 KB
/
stringmanip.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
/**
* Transform a string with the given functions
* @param str a string to be transformed
* @param mut an array of string transformation functions to be applied left-to-right to `str`
*/
export const apply = (str: string, mut: ((str: string) => string)[]) =>
mut.reduce((prev, func) => func(prev), str);
/**
* Generate a function that escapes a given character for input strings
* @param symbol a symbol (character) to generate an escape function for
*/
export const escape = (symbol: string) =>
(
/** A string to escape */ input: string,
) => {
switch (symbol) {
case "\n":
return input.replaceAll("\n", `\\n`);
default:
return input.replaceAll(symbol, `\\${symbol}`);
}
};
/**
* Generate a function that unescapes a given character for input strings
* @param symbol a symbol (character) to generate an unescape function for
*/
export const unescape = (symbol: string) =>
(
/** A string to unescape */ input: string,
) => {
switch (symbol) {
case "\n":
return input.replaceAll(`\\n`, `\n`);
default:
return input.replaceAll(`\\${symbol}`, symbol);
}
};
/** Escape symbols unsafe for tags */
export const escapeTag = (tag: string) =>
apply(tag, [escape("]"), escape("|")]);
/** Escape symbols unsafe for messages */
export const escapeMessage = (message: string) =>
apply(message, [escape("["), escape("|")]);
/** Escape symbols unsafe for fields */
export const escapeField = (fieldval: string) =>
apply(fieldval, [escape(":"), escape("|")]);
/** Unescape symbols unsafe for tags */
export const unescapeTag = (tag: string) =>
apply(tag, [unescape("]"), unescape("|")]);
/** Unescape symbols unsafe for messages */
export const unescapeMessage = (message: string) =>
apply(message, [unescape("["), unescape("|")]);
/** Unescape symbols unsafe for fields */
export const unescapeField = (fieldpart: string) =>
apply(fieldpart, [unescape(":"), unescape("|")]);