-
Notifications
You must be signed in to change notification settings - Fork 0
/
ansi.js
49 lines (35 loc) · 1.87 KB
/
ansi.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
define(function main(require, exports, module) {
module.exports = function(str) {
// Bold
str = str.replace(/\\x1B\[1m/gi, "<b>")
.replace(/\\x1B\[22m/gi, "</b>")
// Italic
.replace(/\\x1B\[3m/gi, "<i>")
.replace(/\\x1B\[23m/gi, "</i>")
// Underline
.replace(/\\x1B\[4m/gi, "<u>")
.replace(/\\x1B\[24m/gi, "</u>")
// Inverse
.replace(/\\x1B\[7m/gi, "<span style=\"-webkit-filter:invert(100%)\">")
.replace(/\\x1B\[27m/gi, "</span>");
// Color
var colors = {
"black": /\\x1B\[30m/gi,
"red": /\\x1B\[31m/gi,
"green": /\\x1B\[32m/gi,
"yellow": /\\x1B\[33m/gi,
"blue": /\\x1B\[34m/gi,
"magenta": /\\x1B\[35m/gi,
"cyan": /\\x1B\[36m/gi,
"white": /\\x1B\[37m/gi,
"grey": /\\x1B\[90m/gi
}
for(var c in colors) {
str = str.replace(colors[c], "<span style=\"color:" + c + "\">");
}
// End codes
str = str.replace(/\\x1B\[0m/gi, "</span>")
.replace(/\\x1B\[39m/gi, "</span>");
return str;
};
});