Comparing version 0.3.12 to 0.3.13
{ | ||
"name": "rejoinder", | ||
"version": "0.3.12", | ||
"version": "0.3.13", | ||
"description": "A generator of smart, pretty, and organized output for Node/JS scripts in the terminal", | ||
@@ -5,0 +5,0 @@ "repository": { |
@@ -40,3 +40,3 @@ [![npm version](https://badge.fury.io/js/rejoinder.svg)](https://badge.fury.io/js/rejoinder) | ||
echo.now('output this very important warning to the console with pretty colors'.formatAsWarning()); // colorful output | ||
echo.now('output this very important warning to the console with pretty colors'); // immediate output | ||
echo.withPostfix.warn('output this very important warning to the console with pretty colors'); // colorful output prefixed with the string "WARN " | ||
@@ -51,3 +51,3 @@ | ||
echo.if(somethingistrue, 'I spit only the truth!'.formatAsSuccess()); // also returns false if somethingistrue is false | ||
echo.if(somethingistrue, 'I spit only the truth!'); // also returns false if somethingistrue is false | ||
@@ -54,0 +54,0 @@ echo.now('all', 'my', 'methods', 'are', 'also', 'variadic!'); // prints "all my methods are also variadic!" |
49517