UNPKG

daniel-san

Version:

a node-based budget-projection engine that helps your routines and finances find balance. The program features aggregates, terminal and file-based reporting output, multi-currency conversion capability and multi-frequency accounting triggers, including: o

12 lines (10 loc) 738 B
"use strict"; var danielSanAsciiArt = function danielSanAsciiArt(writeStream) { var lineArt = ['________ .__ .__ _________ ', '\\______ \\ _____ ____ |__| ____ | | / _____/____ ____ ', ' | | \\\\__ \\ / \\| |/ __ \\| | ______ \\_____ \\\\__ \\ / \\ ', ' | ` \\/ __ \\| | \\ \\ ___/| |__ /_____/ / \\/ __ \\| | \\ ', '/_______ (____ /___| /__|___ >____/ /_______ (____ /___| /', ' \\/ \\/ \\/ \\/ \\/ \\/ \\/']; lineArt.forEach(function (line) { writeStream("".concat(line, "\n")); }); }; module.exports = { danielSanAsciiArt: danielSanAsciiArt };