-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathlogo.js
19 lines (17 loc) · 854 Bytes
/
logo.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// Aebleskiver
// (c) 2011 Beau Sorensen
// Aebleskiver may be freely distributed under the MIT license.
// For all details and documentation:
// https://github.com/sorensen/aebleskiver
require('colors');
//###print
// Remember to escape all backslashes
exports.print = function() {
console.log("");
console.log(" _ _ _ _ ".green.bold);
console.log(" __ _ ___ | |__ | | ___ ___ | | __(_)__ __ ___ _ __ ".green.bold);
console.log(" / _` | / _ \\| '_ \\ | | / _ \\/ __|| |/ /| |\\ \\ / // _ \\| '__| ".green.bold);
console.log(" | (_| || __/| |_) || || __/\\__ \\| < | | \\ V /| __/| | ".green.bold);
console.log(" \\__,_| \\___||_.__/ |_| \\___||___/|_|\\_\\|_| \\_/ \\___||_| ".green.bold);
console.log("");
}