Browse Source

Spruce up around the edges.

pull/1/head
Tim Rollet 7 years ago
parent
commit
7ae198b238
1 changed files with 2 additions and 5 deletions
  1. +2
    -5
      src/roosay.js

+ 2
- 5
src/roosay.js View File

@ -1,11 +1,9 @@
#!/usr/bin/env node #!/usr/bin/env node
(function () { (function () {
var DEFAULT_LEN, ROO, BUBBLE_TOP_CHAR, var DEFAULT_LEN, ROO, BUBBLE_TOP_CHAR,
textToRoo; textToRoo;
DEFAULT_LEN = 35; DEFAULT_LEN = 35;
BUBBLE_TOP_CHAR = "-"; BUBBLE_TOP_CHAR = "-";
roo = ` roo = `
@ -34,7 +32,7 @@
} }
function rooify(text) { function rooify(text) {
var textLines, maxLineLength, finalOutput, bubbleHeader;
var textLines, finalOutput, bubbleHeader;
finalOutput = ""; finalOutput = "";
textLines = lineify(DEFAULT_LEN)(text); textLines = lineify(DEFAULT_LEN)(text);
bubbleHeader = new Array(DEFAULT_LEN+2).fill(BUBBLE_TOP_CHAR).join(""); bubbleHeader = new Array(DEFAULT_LEN+2).fill(BUBBLE_TOP_CHAR).join("");
@ -44,6 +42,7 @@
finalOutput += roo; finalOutput += roo;
return finalOutput; return finalOutput;
} }
if (process.stdin.isTTY) { if (process.stdin.isTTY) {
textToRoo = process.argv.splice(2).join(" "); textToRoo = process.argv.splice(2).join(" ");
console.log(rooify(textToRoo)); console.log(rooify(textToRoo));
@ -53,6 +52,4 @@
process.stdin.on('end', _ => console.log(rooify(textToRoo))); process.stdin.on('end', _ => console.log(rooify(textToRoo)));
process.stdin.resume(); process.stdin.resume();
} }
module.exports = {lineify};
}()); }());

Loading…
Cancel
Save