From 6d25ec239c0e14959929de1f3761a5aad39d58e5 Mon Sep 17 00:00:00 2001 From: velvettear Date: Fri, 24 Mar 2017 21:46:09 +0100 Subject: [PATCH] implemented ascii logo --- badger-am.js | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/badger-am.js b/badger-am.js index 1549084..99256ab 100755 --- a/badger-am.js +++ b/badger-am.js @@ -15,6 +15,8 @@ const app = require('./package.json'); // generate timestamp const start = process.hrtime(); +printLogo(); + // general options commander .version(app.version) @@ -190,6 +192,15 @@ function frontFill(string, fill, length) { return string; } +// print logo +function printLogo() { + console.log(' _ _ _ __ __ '); + console.log(' | |__ __ _ __| |__ _ ___ _ _ /_\\ | \\/ |'); + console.log(' | \'_ \\\/ _` \/ _` \/ _` / -_) \'_\/ _ \\| |\\/| |'); + console.log(' |_.__\/\\__,_\\__,_\\__, \\___|_|\/_\/ \\_\\_| |_|'); + console.log(' |___/ '); +} + // shutdown function exit(err) { if (err) {