-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathhelper.js
53 lines (46 loc) · 1.06 KB
/
helper.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
50
51
52
53
global.puts = function(msg) { console.error(msg); }
global.green = function(msg, bold) {
if(bold=="bold" || bold==true) {
console.error(msg.green.bold);
} else {
console.error(msg.green);
}
}
global.red = function(msg, bold) {
if(bold=="bold" || bold==true) {
console.error(msg.red.bold);
} else {
console.error(msg.red);
}
}
global.blue = function(msg, bold) {
if(bold=="bold" || bold==true) {
console.error(msg.blue.bold);
} else {
console.error(msg.blue);
}
}
global.magenta = function(msg, bold) {
if(bold=="bold" || bold==true) {
console.error(msg.magenta.bold);
} else {
console.error(msg.magenta);
}
}
global.cyan = function(msg, bold) {
if(bold=="bold" || bold==true) {
console.error(msg.cyan.bold);
} else {
console.error(msg.cyan);
}
}
global.white = function(msg, bold) {
if(bold=="bold" || bold==true) {
console.error(msg.white.bold);
} else {
console.error(msg.white);
}
}
global.getRandomInt = function(min, max) {
return Math.floor(Math.random() * (max - min + 1)) + min;
}